Home Forums WoodMart support forum How to change width that mobile menu appears

How to change width that mobile menu appears

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #88703

    d_ch
    Participant

    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.
    #88741

    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

Viewing 2 posts - 1 through 2 (of 2 total)