Hi,
I am looking at some code please to add to the bottom of my base.css file
Does anyone have code to change the font size of product description and font style as well if possible?
website:
A user seeks CSS code to modify the font size of product descriptions in the DAWN theme, requesting it be added to the base.css file. They also ask about changing font style if possible.
Solution provided:
.product__description > p selectorfont-size: 1rem!important;font-style: italic!important; for stylingA code snippet and result image were shared demonstrating the implementation. The solution appears straightforward and directly addresses the styling request.
Hi,
I am looking at some code please to add to the bottom of my base.css file
Does anyone have code to change the font size of product description and font style as well if possible?
website:
@RC94 , use this code
.product__description > p {
font-size: 1rem!important;
font-style: italic!important;
}
Result: