I understoot that in the latest update, you removed the mobile dropdown menu (like in topflat.nl).
In a new install (polderflora.nl), on a mobile I can click a main navigation item, but I can’t reach the sub-items.
(Un)Checking “Hide Mobile Menu Submenu Items” doesn’t change anything.
Changing “activate for smartphones (768px)” into smartphones and tablets (990) only lets the whole navigation disappear on my test-mobile.
How can I make the sub-navigation clickable in mobile devices?
Hey sberendss!
You are using Fixed layout. You can activate Responsive Layout in Enfold theme options. If you would like to use fixed layout and display the menu on smaller screens, please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 767px) {
.main_menu, #header_main_alternate {
display: block;
}}
Cheers!
Yigit
Yigit,
First tried to add the quick CSS, but that didn’t change anything.
But then I switched to responsive layout and that solved the problem for me. Thanks!