The code below will provide support for overwriting the standard mobile menu functionality if you have the UberMenu plugin enabled on the Main Menu location.
#logo a.mobile-menu-show {
display: none!important;
}
#main-navigation, .header-1 #main-nav, .header-1 #main-nav-sticky-wrapper, .header-2 #main-nav, .header-2 #main-nav-sticky-wrapper {
display: block!important;
}
@media only screen and (max-width: 991px) {
.header-1 #logo, .header-2 #logo {
width: 100%;
margin-bottom: 15px;
}
}
@media only screen and (max-width: 767px) {
.menu-left #main-navigation {
padding-left: 10px;
}
}
Hope that helps!
– Ed