Home Forums WoodMart support forum MOBILE MENU TABLET LANDSCAPE

MOBILE MENU TABLET LANDSCAPE

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

    becybernetics
    Participant

    Hi, how can I show mobile menu when user has tablet lanscape view?

    #384284

    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)