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
January 13, 2019 at 4:32 pm
#101662
Elise Noromit
Member
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