Following is css code which hides main menu and displays mobile menu in tablet.css file.
Remove following css codes in tablet css.
- Code: Select all
#gkMobileMenu {
background: url("../images/tablet_menu.png") no-repeat scroll 0 0 transparent;
float: right;
margin: -6px 5px 0;
position: relative;
}
#gkExtraMenu {
display: none !important;
}
#gkMainMenu {
display: none;
}
#gkMobileMenu select {
height: 44px;
left: 0;
opacity: 0;
position: absolute;
top: 0;
width: 44px;
}
#gkMobileMenu {
clear: both;
display: block !important;
float: right;
font-size: 18px;
height: 44px;
line-height: 44px;
position: relative;
text-indent: -9999px;
width: 44px;
}
And Hide the mobile menu with below css code in tablet.css
- Code: Select all
#gkMobileMenu { display:none;}
See you around...