Support Forums for LiveMesh Themes & Plugins › Forums › Appdev Theme Support › Hiding page sections on Mobile › Reply To: Hiding page sections on Mobile
November 16, 2013 at 10:36 am
#2806
Keymaster
To hide the entire section, pls use the following Custom CSS. Thanks –
@media only screen and (max-width: 767px) {
#features { display: none; }
}
and to retain part of it and hide the image only –
@media only screen and (max-width: 767px) {
#featured-app .fivecol.no-margin { width: 100%; }
#featured-app .sevencol { display: none; }
}