Change Size of Product Title? Craft Theme

Hey, how can I change the size of the product title on the product page? I’m using craft theme.

1 Like

@YnkSch

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

Add this code in the section-main-product.css file.

  1. Navigate to Online Store->Theme->Edit code
  2. Asset->/section-main-product.css ->paste below code at the bottom of the file.
  3. Save it.

It doesn’t work on my side

1 Like

@YnkSch

h1,
.h1 {
font-size: calc(var(–font-heading-scale) * 5rem);

Add this code in the section-main-product.css file.

  1. Navigate to Online Store->Theme->Edit code
  2. Asset->/base.css ->Replace code at the file.
  3. Save it.

it’s also not working

1 Like