MOBILE MENU TABLET LANDSCAPE
-
Hi, how can I show mobile menu when user has tablet lanscape view?
Hello,
Please try adding the mobile menu in the Desktop header and then try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.
@media (min-width: 1100px) {
.whb-header .wd-header-mobile-nav {
display: block;
}
}
@media (max-width: 1100px) {
.whb-header .wd-header-main-nav {
display: none;
}
}
You can set the width according to your needs.
Best Regards