Bolding/changing menu text
- The topic ‘Bolding/changing menu text’ is closed to new replies.
Need help? Check out our Support site, then
Hi there! Based on some other posts I read about this topic, I have been putting this code:
#header #primary .menu-item a {
font-weight: bold;
font-size: 16px;
}
into the custom CSS to try and bold my font in the menu. It is not working, however. How can I bold the font?
I’d also like to know what I can use to change the menu font to “Lora”.
Thank you!
The blog I need help with is: (visible only to logged in users)
Try this:
#header #primary .menu a,
#header #primary .menu a:link {
font-weight: bold;
}
That did it – thank you!