Text in different font and sizes on product pages

Topic summary

A user encountered inconsistent font styles and sizes across product pages after adding custom CSS to reduce product description text size. New products displayed different fonts than existing ones.

Original CSS applied:

.product__description.rte.quick-add-hidden {
  font-size: 14px !important;
}

Solution provided:
A community member suggested adding CSS targeting specific elements within product descriptions:

  • Applied font-family and font-size rules to .product__description span
  • Added font-size styling to .product__description>h6
  • Code to be inserted in Asset > base.css

Resolution:
The issue was resolved after the user tested the suggested code. The inconsistent fonts across product pages are now standardized.

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

Dear All,

I am strugling with the different text fonts on some product pages. I recently added some code to make the product desscription text smaller, and since than every time I add new product with new description the font is different and so is the size. Please advice on how to fix.

Many thanks,

Lumi

4 Likes

Here is the code added for the text size before I created new products…

.product__description.rte.quick-add-hidden { font-size: 14px !important; }

Hi @Magicart ,

Can you provide link to the store?

Hey @Magicart

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

Best Regards,
Moeed

Hi Moeed,

Here it is.

https://magicartbysofia.com/products/portal-of-the-tides

Hello @Magicart ,

Here are the steps to apply the necessary changes in your Shopify store:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
  2. Locate Asset > base.css and paste the following code at the bottom of the file:
.product__description span {
 font-family: Montserrat, sans-serif !important;
 font-size:14px !important;
}

.product__description>h6{
font-size:14px !important;
}

Let me know if you need further assistance!

Thank you ZestardTech,

I tried your code but nothing changed on my side..the text is still different fonts. Any thoughts?

Now it worked sorry for that. Many thanks :folded_hands:

2 Likes

Thank you. I have tried another code earlier and it works now. But much apreciated your help and compliments. :blush:

1 Like