Desktop Nav Custom Font Update

Hi there.

I am attempting to fix a custom font issue for the main menu. Specifically the desktop menu. Mobile menus have updated just fine.

I have uploaded font files and tried several different css changes (recommended here), as well as Navbar typography changes in the customizer to no avail. :persevere:

Any other ideas? https://www.cedarsunion.org/

Thanks,
Ashley

Hi Ashley,

Thank you for writing in, I see that you’re using this custom CSS to apply the custom font to your menu.

.menu-item a {
    color: #2d2d2d!important;
    font-family: 'Circular Std Bold'!important;
    box-shadow: none!important;
}

I think there is a typo there because your font is “Circular Std Book” not 'Circular Std Bold’

Please update that custom CSS code to this:

.menu-item a {
    color: #2d2d2d!important;
    font-family: "Circular Std Book" !important;
    box-shadow: none!important;
}

If you’re wondering what is the recommended way of using custom font in the theme, please see the following tutorial.

Getting Started With Custom Fonts

Cheers!

That did it! Thank you so much!

You’re welcome!
We’re glad @Friech were able to help you out.

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