Minimal theme: How to change the font size of the product title in product page?

I’d like to decrease the font size of the product title in product page. I researched the same topics but couldn’t find the right code and the file. All help will be appreciated.
I use Minimal theme.

My store link: https://wiggleduck.com/

1 Like

Try adding this code to the bottom of theme.scss.css.

.product-single__title {
  font-size: 20px;
}
1 Like

@thevista888

Please add the following code at the bottom of your assets/theme.scss.liquid file,

.product-single__title{
font-size: 1.2em !important;
}

Hope this helps.

1 Like

Both works perfectly. Thank you so much, I appreciated. @Nick_Marketing @dmwwebartisan

1 Like

@thevista888 Excellent, I’m glad the problem is solved!

1 Like