I need the sidebar to display the menu correctly. Right now it displays everything (see link attached), however, I just need it to display the categories (the things in capitals)
Hey adGroupMarketing,
Please add this CSS code in Enfold > General Styling > Quick CSS:
#menu-supermarket-shop-1 .sub-menu {
display: none;
}
Hope it helps.
Best regards,
Nikko
Hi Nikko,
I need the user to be able to click the subcategory and then the subcategories dropdown
This option just removes all the links?
Close!
Jess
Hi,
Thank you for the update.
That option is not available in the navigation menu widget, so you might have to find another plugin for it. However, if you want the sub menu items to be hidden initially and only display them when the parent category is hovered, then we can use the following css code
.widget_nav_menu .sub-menu {
display: none;
}
.widget_nav_menu li:hover .sub-menu {
display: block;
}
Best regards,
Ismael