Hello
Is it possible to hide certain modules from view on tablets and mobile phones?
Thanks.
@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; }
}