Featured Collection Bold Title Dawn Theme

Topic summary

Goal: Make product titles in the Featured Collection section of a Shopify (Dawn theme) appear bold.

Solution provided: Add a CSS rule targeting the product title element: .card__information h3 { font-size: 18px; font-weight: bold; }.

Where to add it: Online Store > Theme > Edit code > Assets > base.scss.liquid (append at the bottom).

Outcome: Another participant confirmed the CSS fix worked perfectly, indicating the solution is effective.

Notes: Screenshots were shared to highlight which titles to style and illustrate where to place the code, but the core change is the CSS rule itself.

Status: Resolved; no remaining open questions or disagreements.

Summarized with AI on December 14. AI used: gpt-5.

Hello there Shopify community! Hope you all having a great day! I was wondering if anyone can give me a quick helping hand in my store. Basically I’m trying to get the products title in featured collections to be written in BOLD.

  • I underlined with red the titles I want to make bold:)

I would be gra

@YonatanBaratz
Hello,

.card__information h3 {
	font-size: 18px;
	font-weight: bold;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

Like This

This solution worked perfectly for my store. Thanks!!!