Change text font size of category sub menu
-
Hello,
I can’t figure out how to change the font size of the category menu sub items shown in the added image
Can you please advice?
Attachments:
You must be
logged in to view attached files.
Hello,
First of all thanks for choosing our Theme, we are glad to be you in WoodMart WordPress family :-)
.
There is no specific option to increase the font size of the category menu sub item. You can try the “Menu drop down second level” from Theme Settings >> Typography >> ADVANCED TYPOGRAPHY but it might disturb many other menus styling.
So you can try the below CSS in Theme Settings >> Custom CSS Global Custom CSS to change the submenu font size of categories menu:
.show-on-hover.header-categories-nav .header-categories-nav-wrap .vertical-navigation .menu-mega-dropdown .sub-sub-menu li a {
font-size:18px;
}
Best Regards.
Thank you for your reply.
It worked after I changed “sub-sub-menu” to “sub-menu”. Thank you.
I tried all the different options in advanced Typography before but non of them seemed to work.
Another question, is there a way to reduce the gap between the sub categories?
Attachments:
You must be
logged in to view attached files.
Most Welcome,
I’m glad that your first issue is resolved.
To reduce the gap between the sub categories you can use the below CSS in your Global Custom CSS area under Theme Settings:
.show-on-hover.header-categories-nav .header-categories-nav-wrap .vertical-navigation .menu-mega-dropdown .sub-menu li{
margin-top: -8px;
}
Best Regards.