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
Moeed
January 21, 2025, 3:54pm
2
Hey @Zoomiesandco
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
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
kazi_1
January 21, 2025, 3:57pm
3
@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
thanks, where do i find the base.css file?
kazi_1
January 21, 2025, 4:20pm
7
Under Assets in theme editor
Please add this line of code as well in base.css file
.product__description.rte.quick-add-hidden * {
font-family: 'Americana' !important;
}