Hey,
I want to display the mobile menu button on my site when my iPad and iPad mini is on landscpae. It works only for Prtraitmode (options>Header>Mobile Menu – Activate for smartphones and tablets).
I read some posts about changing in js>avia.js the line with ” witchWidth: 768″. But there is no such line in my avia.js file!
please help
best regards
Hey Pasi91!
Navigate to Dashboard > Enfold > Header > Mobile Menu and set it to activate for tablets.
Best regards,
Elliott
When the iPad is on Landscape there is still no mobile menu. Only in portrait format, but I need it in landscape too!
Hey!
Add this to your custom CSS.
@media screen and (max-width: 1200px) {
#advanced_menu_toggle { display: block !important; }
nav.main_menu { display: none !important; }
}
And adjust the 1200px value to however wide your tablet screen is in landscape.
Best regards,
Elliott
Thanks for your solution. It works!
But now the backbutton (cross) is gone when you open the menu… Any idea why this is happening?!?
Hi!
Can you send us a link to your page so we can take a look? You can set your reply as private if you wish.
Best regards,
Elliott
The site is under construction but I can send you a screenshot in privat section
Hi,
Please try the following instead:
@media only screen and (max-width: 1024px) {
nav.main_menu {display:none !important;}
#advanced_menu_toggle, #advanced_menu_hide {display:block !important; }
}
Regards,
Rikard
Thanks, seems it works Rikard!