Hi you can try adding this to your custom css
@media only screen and (max-width: 991px) {
.site-header .col-md-4 {
display: none !important; }
.site-header.fixed {
padding: 0 0 10px !important;
}
}
WOW! Quick response. Thanks!
This got rid of the bottom padding but there is still a fair amount on the top. I changed your code to:
/* Mobile menu testing */
@media only screen and (max-width: 991px) {
.site-header .col-md-4 {
display: none !important; }
.site-header.fixed {
padding: 0 0 0 0px !important;
}
}
Any way to get rid of the top pad?