Hi everyone, I am trying to use the ‘Use Any Font Plugin’ to change the main menu font. It is not obvious how this is done. I know I can do this in the CSS but I want to keep all font related stuff in the plugin (I paid for it! LOL)
Hey TrevorMF,
Thank you for the inquiry.
What is the name of the font that you are trying to use? You can use this css to change the default style of the menu items including its font-family.
.av-main-nav > li > a {
display: block;
text-decoration: none;
padding: 0 13px;
font-weight: normal;
font-weight: 600;
font-size: 13px;
font-family: "name of font", serif;
}
You can also configure the menu style in the Enfold > Advanced Styling panel, but you may not be able to select the font from the plugin.
Best regards,
Ismael
Hi and thanks for that, it didn’t work. The font is a custom font. No matter where I try to control this the menu font remains the same, either using the ‘Use any font’ plugin or editing the CSS. Any ideas?
Here’s the code I used based on your suggestion.
.av-main-nav > li > a {
display: block;
text-decoration: none;
padding: 0 13px;
font-weight: normal;
font-weight: 600;
font-size: 13px;
font-family: “verlag-light”, serif;
}