product description too big

Topic summary

Product description text on a Dawn theme product page appears too large; the requester wants it smaller.

Key suggestions:

  • Add CSS to the theme stylesheet targeting .product__description to set a smaller font-size (example given: 26px).
  • Add CSS in Assets > section-main-product.css targeting .product__info-container .product__description with font-size: 22px !important; a screenshot shows the smaller result. Note: the shared snippet contains minor syntax errors (an extra comma/spacing) that may need correction.
  • Another reply suggests adding code before in theme.liquid, but no code was provided.

Clarifications and status:

  • The requester confirmed they want the description smaller.
  • A later comment notes the text already looks small and asks if the issue is resolved, with a screenshot.

Technical notes:

  • Changes involve CSS (cascading style sheets) edits in the theme files of Shopify’s Dawn theme.
  • Screenshots are used to illustrate current and adjusted text sizes.

Outcome: No explicit confirmation of resolution from the requester; the thread appears open pending their feedback.

Summarized with AI on December 20. AI used: gpt-5.

Hello,
I find that the product description text is too large on my product page. Do you know how I can make it a bit bigger?

This is my site: https://albe.online/products/bubbly-short and I use the Dawn theme

thank you in advance

@albestudios , what do you mean? do you want bigger or smaller one?

hi,

Thank you for your reply, i would like to make it smaller sorry

Hi @albestudios

Please add the CSS code in the theme stylesheet.

.product__description {

  font-size: 26px;

}

I hope this helps! If it does, please like it and mark it as a solution!

If you need further assistance, feel free to reach out!

Regards,

Sweans

Hello @albestudios
Go to online store ----> themes ----> actions ----> edit code ---->assets ----> section-main-product.css
add this code at the end of the file.

.product__info-container .product__description, {
font-size: 22px !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

I see it small, did you fix that?

Hi @albestudios ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!