How to change width that mobile menu appears
-
Hi,
I would like to ask you if it’s possible to change via your theme options when to show my mobile menu (for example show mobile menu when screen width is less than 1100px).
Waiting for your further advice.
Attachments:
You must be
logged in to view attached files.
Hello,
You can add mobile menu element on the desktop header and add this custom CSS to the Theme Settings > Custom CSS:
@media (min-width: 1100px) {
.whb-header .whb-mobile-nav-icon {
display: none;
}
}
@media (max-width: 1100px) {
.whb-header .main-nav {
display: none;
}
}
Best Regards