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

#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