Hi
Where and what to edit, if I just want to show the normal mainmenu in tablet view. I don't want it to show the bruger icon. My menu only has two items, so mainmenu can easily be shown on a tablet too.
Se my site here
@media only screen and (max-width:1040px) {
#gkMobileMenu {
display: none !important;
}
#gkMainMenu, #gkExtraMenu {
display: block !important;
}
}
/* Show mainmenu on iPad too. Don't use burger icon */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1040px)
and (-webkit-min-device-pixel-ratio: 1) {
#gkMobileMenu { display: none !important; }
#gkMainMenu, #gkExtraMenu { display: block !important; }
}
@media only screen and (max-width:1040px) {
body #gkMobileMenu {
display: none !important;
}
body #gkMainMenu,
body #gkExtraMenu {
display: block !important;
}
}
@media only screen and (max-width:1040px) and (min-width:-767px) {