How can I change the font on my website without affecting titles?

Hi,

I made some font changes some time ago and my website can only use the one font now. It was some code changes but Im not sure how to change it. I want the titles to remain the current font but have the flexibility to chose other fonts for product descriptions etc.

website - www.byanymeans.net.au

Hi @byanymeans

Please follow these steps:

  • Go to Admin => Online Store => Theme => Edit Code. Then, find theme.liquid file and find the following code:
font-family: "big_noodle_titling" !important;
  • Then just replace the old font name "big_noodle_titling " with the font name you want. After replacement, it will be of the form:
font-family: "Times New Roman" !important;

I hope that it will help you solve the issue.