Hi guys,
I would like to increase the product title size to 25px without affecting any other text. I would appreciate your help.
A user wants to increase the product title font size to 25px in the Dawn theme without affecting other text elements.
Solution provided:
.product__title h1 { font-size: 25px !important; }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.
Hi guys,
I would like to increase the product title size to 25px without affecting any other text. I would appreciate your help.
.product__title h1 {
font-size: 25px !important;
}
@basicbastardco Try this one into your base.css file (online store-> theme->base.css)