I am trying to make my featured product title in bold in my main page.

Topic summary

A user needed help making the featured product section title bold on their main page. They had successfully applied bold styling to their collage title but couldn’t replicate it for the featured product title.

Solution provided:

  • Initially, CSS code was suggested for product card headings (.card__heading a), but this addressed the wrong element
  • The correct CSS snippet was then provided: .collection__title .title { font-weight:bold; }
  • This code should be added to the base.css file

Outcome:
The issue was resolved successfully with the correct CSS targeting the collection/featured section title rather than individual product cards.

Summarized with AI on November 23. AI used: claude-sonnet-4-5-20250929.

Hey everyone, I am trying to make my featured product title in bold in my main page, but It just won’t work. I figured out how to do it for my Collage title and it worked, but not for the featured product Title. Is there anyone that can help me please?

Shop link: https://visual-canvas-2.myshopify.com/

.card__heading a{
font-weight:bold;
}

find base.css

Hello @Simonsron , Thank you for your answer, but my concern was for the featured product section Title. Sorry for the confusion. Here is a picture of the title I want to make in bold.

.collection__title .title{
font-weight:bold;
}

try this

1 Like

Thank you brother!