Osclass forums
		Support forums => Themes => Bender => Topic started by: Resta on July 16, 2018, 09:07:28 pm
		
			
			- 
				Hello,
 
 I am looking for css that will automatically hide the listing description in mobile view (just like gallery view). Thanks!
- 
				Hello,
 
 You need to use @media queries. Here's an example that will hide the element with id "description" for screens with the width less than 768px.
 
 @media (max-width: 768px) {
 #description {
 display: none;
 }
 }
 
 Regards.
- 
				Patrick,
 
 Thanks for the tip.