Hi,
I'm trying to hide the header module from mobile displays but the module suffix of "nomobile" isn't working. I've added this code to the override.css and enabled css overrides in template settings.
@media only screen and (min-width:768px) and (max-width:1024px) {
.notablet { display: none !Important; }
}
@media only screen and (max-width:767px) {
.nomobile { display: none !Important; }
}
@media (max-width: 640px){
.onlymobile {
display: block!important;
}
}