Hi @virtualve
I’m copying some of these values from your staging site, but in order to remove the banner in mobile you would put this in Website Custom CSS:
@media only screen and (max-width: 1023px){
.simple-banner{ display-none; }
}
You can adjust the max-width value to determine at what screen size you’d like to stop showing the banner.
To fix your mobile header, you can put this in your Website Custom CSS:
@media only screen and (max-width: 1023px) {
header.site-header {
top: auto !important;
}
}