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/
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/
Try adding this code to the bottom of theme.scss.css.
.product-single__title {
font-size: 20px;
}
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.
Both works perfectly. Thank you so much, I appreciated. @Nick_Marketing @dmwwebartisan
@thevista888 Excellent, I’m glad the problem is solved!