Hiding modules in responsive views


Author Message
Trent

Posted: 12/31/2015
Quote message 

I would like to hide some modules on a phone or tablet in portrait responsive view. Is there a way to achieve this with an Artisteer template?
 
Trent

Posted: 12/31/2015
Quote message 

Solved it. Added this:

@media screen and (max-width: 1000px) {
.art-header{
display:none;
}
}

to the CSS options in the Artisteer template. now the header disappears on small screens.