CSS for Dropdown Top Menu Font Size
- The topic ‘CSS for Dropdown Top Menu Font Size’ is closed to new replies.
Need help? Check out our Support site, then
Hello me again!
Also, is there a CSS to change the Dropdown Top Menu Font Size?
Thanks :)))
Laura
The blog I need help with is: (visible only to logged in users)
Hi Laura – no problem.
If you want to change all the font size for the whole menu you can use:
.menu-primary .menu li {
font-size: 1em;
}
If you want to change just the dropdown menu font size you can use:
.menu-primary .menu li li {
font-size: 0.8em;
}
Thanks Ben