Tagged: hamburger
Hi,
I have a campaign landing page (LP) for my business and used the code below to have this LP w/o nav menu. This works fine, but on mobile still the navigation hamburger button appears.
How can I avoid/delete this hamburger button for the LP, too?
.page-id-xxxx .main_menu {
display: none;
}
Hey Tilman,
use this code to remove mobile menu:
@media only screen and (max-width: 989px) {
.responsive.html_mobile_menu_tablet .container #advanced_menu_toggle, .responsive.html_mobile_menu_tablet
#advanced_menu_hide {
display: none;
}}
Best regards,
Andy
thx Andy – and this will delete the button on the ONE page ID ONLY as needed?
Hi,
no. Add page-id of the page in questions, so something like this:
@media only screen and (max-width: 989px) {
.page-id-1665 .responsive.html_mobile_menu_tablet .container #advanced_menu_toggle, .responsive.html_mobile_menu_tablet
#advanced_menu_hide {
display: none;
}}
Best regards,
Andy
hi,
unfortunately the button ist still there e.g. on iPad
Hi!
Please add following code to Quick CSS
.page-id-8264 #advanced_menu_toggle { display: none !important; }
Best regards,
Yigit
Thx Yigit,
this very lean one works pretty :-)
Best regards, Tilman