How can I adjust the H1 size on Debut theme product pages?

I have done this before on an old site and it was easy but the theme files are different nowadays (so community solutions are also out of date that ive found) … shopify support also refused to help.

I simply want to make the Headings smaller on product pages (no huge deal if this changes all H1 on the rest of the site) Its at 20px and want it to be the size of other fonts (15px) … cannot do it on theme settings section so it needs to be coded (see screen shots)

@Henrybags ,

Please add this CSS to your theme

.product-single__description.rte h1 {
    font-size:15px !important;
}

Thanks!

1 Like

thank you so so much that has made the decsription perfect… why support couldnt just tell me that i dont know

is there a code like this to make the product title smaller just on product pages?

@Henrybags ,

please share screenshot..

@Henrybags ,

h1.product-single__title {
    font-size: 20px !important;
}

Thanks!