Changing font size for product description DAWN theme

Topic summary

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:

  • Target the product description with .product__description > p selector
  • Set font-size: 1rem!important;
  • Optionally add font-style: italic!important; for styling

A code snippet and result image were shared demonstrating the implementation. The solution appears straightforward and directly addresses the styling request.

Summarized with AI on November 5. AI used: claude-sonnet-4-5-20250929.

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:

BILLYWHITE. Premium Tees for EVERYONE.

@RC94 , use this code

.product__description > p {
  font-size: 1rem!important;
  font-style: italic!important; 
}

Result: