How can I increase the title heading font size on my product page?

Hello,

I need help with making the font size of the title/ heading bigger. ("Starter (6m+))

Here is the product link https://wowberrybites.myshopify.com/products/10?variant=41706772070549

Thanks for your time and help

Hello @winnado11 ,

To change the font size, add this code to your theme.css file.
Navigate to online store >> Click edit theme code.
Now find theme.css and paste the following code.

.product__title
{
font-size: 4rem !important;
}

If you want to adjust the font size then change the value of rem (like 1rem, 2.5rem, 3rem, etc).

Hope it will be helpful for you.

Thanks

1 Like

@eFoli-Marvic Thanks so much!