Home Forums WoodMart support forum HEADER ON TABLET SHOULD GET DESKTOP MENU, NOT MOBILE MENU

HEADER ON TABLET SHOULD GET DESKTOP MENU, NOT MOBILE MENU

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

    Jeriss Cloud Center
    Participant

    Hi,

    When I check my website on a tablet (ex: iPad Pro), I see that it gets displayed with the mobile menu.

    However, I think that there should be enough space for displaying all elements as they are in the desktop view. So on tablet, I wanna display the desktop header.

    How to do that?

    #101662

    Hello,

    Add this code to the Theme Settings > Custom CSS > Global

    @media (min-width: 991px) {
    
    	body .whb-top-bar-inner {
    			height: 30px;
    	}
    	
    	body .whb-general-header-inner {
    			height: 80px;
    	}
    
    	body .whb-header-bottom-inner {
    			height: 40px;
    	}
    	
    	body .whb-visible-lg,
    	body .whb-hidden-mobile {
    		display: -webkit-box;
    		display: -ms-flexbox;
    		display: flex;
    	}
    	
    	body .whb-hidden-lg {
    		display: none;
    	}
    }

    Best Regards

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