Hi all. I would like to know how to change the font of product description. Apparently it can be done only by custom coding. Anybody has gone through this process before and can show me the coding you are using and where to insert it? Thanks heaps
1 Like
Hi @Lee307
Thank you for reaching out to the Shopify community. Iβd be glad to assist you. Could you kindly share your store URL and password (if itβs password-protected) so I can review it and provide you with an update?
Hello @Lee307
1 Go to Shopify Admin > Online Store > Themes.
2 Click ββ¦β next to your active theme and select Edit Code.
3 In the left panel, open base.css or theme.css (found under assets/).
4 Scroll to the bottom and paste this code:
.product__description {
font-family: "Arial", sans-serif;
font-size: 16px;
color: #333;
}
5 Click Save and refresh your store.
Thank you
I tried it but it does not work.