Hi,
In your case, we could look to trigger the mobile menu for landscape iPad’s.
Add this to your theme options CSS:
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
#main-navigation {
display: none;
}
a.visible-sm.visible-xs.mobile-menu-show {
display: block!important;
}
.header-6 #logo, .header-7 #logo {
width: 100%;
padding: 0 15px;
left: 0;
height: auto;
position: relative;
}
nav.search-nav {
display: none;
}
#logo a {
float: left;
}
}