Minimal theme: How to change the description font size on product page?

Hello, I tried this code ;

.product-single__description{ font-size: 12px; }

and it didn’t work.
I use Minimal theme, is there any other way?

1 Like

@thevista888
Kindly share your Store Url.

1 Like

@thevista888

Please try this code

.product-single__description{ font-size: 12px !important; }
1 Like

@Zworthkey wiggleduck.com

1 Like

@thevista888

Please try this code

.product-description{ font-size: 12px !important; }
1 Like

hii, @thevista888
Paste this code on top of the timber.scss file.

.product-description.rte p {
    font-size: 20px !important;
}

Thank You.

1 Like

@dmwwebartisan The second code you posted worked. Thank you so much.
@Zworthkey Your code worked perfectly too, but I put it to bottom of theme.scss.liquid, didn’t try top of the timber.scss.liquid. Thank you so much!