font is different for product descriptions

Hoping someone can help. I’ve imported products to my shopify store: www.zoomiesandco.com from dropshippers. For some reason the font is different for pretty much all my product descriptions than the font set in the theme.

I’ve tried this solution: https://community.shopify.com/post/2841312 but it hasnt worked.

Can anyone help please?

thanks in advance

Hey @Zoomiesandco

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

@Zoomiesandco add this CSS bottom of base.css

.product__description span {
font-family: ‘Americana’ !important;
}

Hi Zoomiesandco

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

.product__description.rte.quick-add-hidden {
    font-family: 'Americana' !important;
}

Result:

Base,
Esther

Hi Moeed,

thanks for your response, it has worked for some product descriptions but not for all of them. Is there anything else you can suggest?

https://www.zoomiesandco.com/products/wholesale-winter-warm-pet-clothes-dog-sweater-for-small-dogs-soft-pet-knitted-sweater-dog-hoodies-pet-clothing-knitting-costume

https://www.zoomiesandco.com/products/useful-greyhound-costumes-soft-winter-clothes-dog-warm-apparel-pet-sleepwear-coat-harness-vest-pitbull-hoodies-jacket

https://www.zoomiesandco.com/products/cross-border-wholesale-pet-clothing-autumn-and-winter-cat-and-dog-padded-coat-thick-warm-lamb-wool-two-feet-padded-clothing

https://www.zoomiesandco.com/products/pet-winter-warm-cotton-padded-coat-small-and-medium-sized-dog-tide-coat-embroidered-coat-dog-cat-clothes

https://www.zoomiesandco.com/products/autumn-and-winter-pet-dog-clothing-dog-clothing-pet-clothing-padded-coat-coat-large-dog-large-dog-vest

https://www.zoomiesandco.com/products/adidog-clothes-pet-dog-clothes-for-small-medium-dogs-cotton-hooded-sweatshirt-2021-hot-selling-warm-two-legged-pet-jacket

thanks again for your help

thanks, where do i find the base.css file?

Under Assets in theme editor

Hi Esther,

Yeah that has worked for some products just not for all of them:

https://www.zoomiesandco.com/products/wholesale-winter-warm-pet-clothes-dog-sweater-for-small-dogs-soft-pet-knitted-sweater-dog-hoodies-pet-clothing-knitting-costume

https://www.zoomiesandco.com/products/useful-greyhound-costumes-soft-winter-clothes-dog-warm-apparel-pet-sleepwear-coat-harness-vest-pitbull-hoodies-jacket

Is there anything else you can suggest?

thanks

Please add this line of code as well in base.css file

.product__description.rte.quick-add-hidden * {
    font-family: 'Americana' !important;
}