Fonts not loading only on certain page

Hello,

My fonts load beautifully on my home page (https://agentmatch.com/find/) but they do not load on my contact page and certain other pages, and I cannot seem to figure out why: https://agentmatch.com/find/contact/

Thanks.
R

Hi R,

Thanks for reaching out.

It’s due to custom CSS that you added with font-family: "Gotham-Light" !important; and it overrides every font. Example,

h1, h2, h3, h4, h5, h6, #site-logo, .h-responsive .post-title, .x-accordion-toggle, .widgettitle {
    font-family: "Gotham-Light" !important;
}

Please remove it, or just make it specific to where it should be applied. Example,

#site-logo {
    font-family: "Gotham-Light" !important;
}

If it’s just meant for the logo.

Cheers!

Rad you are rad!!!

Thank you.

R

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.