Hi Enfold,
I’m doing a test for a customer with Enfold under my domain.
I made two menu’s. Main menu is showing in the top-header and a secundary menu in a left sidebar with the ‘custom menu’ widget. I want all the submenu’s on the mobile menu but only the main menu is showing.
Is there a way to fix this?
Thank you! Great theme!
Hi hansvanasch!
You could try creating a third menu just for mobiles and then do this, http://kriesi.at/documentation/enfold/changing-the-menu-on-mobiles/.
Regards,
Elliott
Hi Elliott,
Thank you for your reply. I create my own solution.
I made a main-menu containing all the items. The secondary menu which is visible in the sidebar with the custom menu widget contains in fact the dropdown items of the main menu. Then i used css to hide the dropdown-menu of the main-menu. Now all the items are visible in the mobile menu and the main menu is partly visible in the header and the other part in the sidebar.
.av-main-nav ul li {
margin: 0px;
padding: 0px;
width: 100%;
display:none;
}
But i’m gonna look to your proposal for the other solution…looks interesting!