Custom font for header text on Sense theme

Hi there,

I’m looking to use a custom font for designated classes (h1 & h2) in the Sense theme. I followed multiple tutorials here in these forums for other themes, but couldn’t get anything that worked just right. I’ve already uploaded my fonts to both my Files section and Assets folder (in the ‘edit code’ section).

Help is so appreciated! Thanks.

try applying with custom css if you can store URL and i can look it up and check

Hi @puzzlepeople ,
Go to the edit code section like you did, and search for the theme.liquid file

add the following code to theme.liquid

<style>
      h1, h2 {
        font-family: fantasy !important;
      }
</style>

In which “h1, h2” are the tags you want to change the font and change fantasy to your font named

**Hope it works @puzzlepeople **

So easy compared to everything else I found! Thank you!

Great work! Your solution is excellent.