Tagged: menu, navigation
Hi,
I have activated “fixed” layout. When I view the web site and my browser window is decreased to 768pixels or less, the navigation menu disappears. There is then NO navigation, also no mobile navigation.
Do I need to change anything to make this working correctly?
Thanks,
Goncalo
Hi goncalo!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 989px) {
.html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate {
display: block;
}}
On fixed layout there will not be a responsive menu.
Best regards,
Yigit
Hi Yigit,
Thanks for the fast reply. unfortunately this seems to have no effect.
You can see the problem here: http://www.dogsbyveramoon.com/
When you make the browser window small it will remove the navigation.
Cheers,
Gonzo
Hey!
Please use following code instead
@media only screen and (max-width: 767px) {
.main_menu, #header_main_alternate {
display: block;
}}
Cheers!
Yigit
Bingo!
Thanks, this works like a charm.
Cheers,
Goncalo