Is it possible to have a secondary drop down menu on mobile?
Hi navindesigns!
Are you wanting to change the menu on mobiles? If so then try this out, http://kriesi.at/documentation/enfold/changing-the-menu-on-mobiles/.
Cheers!
Elliott
Hi!
You can add your menu items that are in secondary menu to your main menu and give them a custom CSS class in Appearance > Menus – http://i.imgur.com/ZqDEvuv.jpg
And then add following code to Quick CSS in Enfold theme options under General Styling tab to hide them on desktop
@media only screen and (min-width: 990px) {
.your-custom-class { display: none !important; }}
@media only screen and (max-width: 990px) {
nav.sub_menu { display: none; }}
Please keep your secondary menu as well, second code will hide it on mobile
Best regards,
Yigit