Reply To: Hiding page sections on Mobile

#2806
livemesh
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; }
}