Custom font not displaying in some areas

Hello, i did not change any thing in our code and it had been working fine, however now suddenly our store the custom heading font is not working in some sections (on home page for example: about section + email sign up) have attatched our code we have in base css

Hi @junglecatclub,

You just need to add !important after the declarations, it will display fine. Refer code:


h1, h2, h3, h4, h5, h6, body, p, a {
    letter-spacing: -.05em !important;
}
h1, h2, h4, h3 {
    font-family: Pixelify Sans !important;
}

Thank you so much :slight_smile:

Hi @junglecatclub,

It’s my pleasure :blush: