Is there a way to have an image not display on smart phones & tablets (portrait)
I have a colour section with a 2/3 column with an image in it and 1/3 column with an icon box in it , it is possible to have this layout on desktop but for mobile only have the icon box
thanks in advance
Hi ste_thumbs!
Please give a unique ID to your color section – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png
and add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 990px) {
#your-custom-id { display: none !important; }}
Regards,
Yigit
Hi Yigit
this makes the entire colour section disappear when on mobile , im looking to only have the 2/3 column with an image (which is inside the colour section) disappear when on mobile
Hi!
Can you post the link to your website and point out the image you would like to hide on mobile?
Best regards,
Yigit
Hi Yigit
Sorry but the site is still in local dev stage
Ive added a screengrab of the page builder view from the dashboard if that helps
http://cl.ly/image/1j07081v2o2M
thanks in advance
Stephen
Hey!
Please add following code to Quick CSS
@media only screen and (max-width: 990px) {
#your-custom-id .av_two_third {
display: none!important;
}}
Cheers!
Yigit
Amazing, thanks so much Yigit for the great support, perfect!