Have tried to make my product tile bold, but nothing has worked so far. any help would be greatly appreciated
Topic summary
Goal: Make product titles bold in the Boundless theme.
- The requester couldn’t get bold titles working and shared their store URL (Boundless theme).
- A helper guided them to Online Store → Customize → Settings → Custom CSS and provided CSS to bold product titles on product tiles (collection/landing pages). The user confirmed this worked.
- For the product page title, the helper supplied an additional CSS rule targeting the product title element (h2 with itemprop=“name”).
Notes:
- Code snippets are central to the solution; an accompanying screenshot illustrates where to add Custom CSS.
Outcome/Status:
- Product tiles are successfully bolded.
- A solution for the product page title was provided; confirmation of its application is not yet posted. The discussion appears close to resolved, pending final confirmation.
What’s your store url
hello Asad this is my store link. store website the theme is boundless
Go to your online store → customize → settings → custom css
And paste this code there
.product-item__link p {
font-weight: bold;
}
that’s perfect. how do I change it on the product page also
add this code there as well for that
h2[itemprop="name"] {
font-weight: bold;
}
