Home Forums WoodMart support forum Trigger mobile menu on great width

Trigger mobile menu on great width

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

    mrvinter
    Participant

    Hello, tried to find on your forum some answer but did not get a solution and how I can trigger the mobile menu earlier on a great width as the menu get on two rows and gets ugly on my 13″ mac.

    #341533

    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

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