How can I increase the product title size to 25px in Dawn theme?

Topic summary

A user wants to increase the product title font size to 25px in the Dawn theme without affecting other text elements.

Solution provided:

  • Add custom CSS targeting the product title specifically
  • Use .product__title h1 { font-size: 25px !important; }
  • Insert this code into the base.css file (located in Online Store > Themes > base.css)

The !important declaration ensures this styling takes priority over existing theme styles. This targeted approach modifies only the product title heading without impacting other text throughout the store.

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

Hi guys,

I would like to increase the product title size to 25px without affecting any other text. I would appreciate your help.

URL: http://basicbastard.co/

.product__title h1 {
    font-size: 25px !important;
}

@basicbastardco Try this one into your base.css file (online store-> theme->base.css)

1 Like