Hey Everyone,
I’m looking to hide some image (icons) in a certain range on tablets. It looks great on Desktop and Mobile but in the vertical range of an iPad 2 it looks horrible. Image in private content to review.
Basically I just want to hide the images from say 1000 px to 800 px.
Thanks
Hey MikeTandySwag,
Please provide a link to the site/page in question so we can look into this further.
Best regards,
Jordan Shannon
You got it! It’s in the private content
Hi,
Add this to quick css:
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 1) {
.home .avia-builder-el-6 img,
.home .avia-builder-el-12 img,
.home .avia-builder-el-18 img{
display:none!important;
}}
Best regards,
Jordan Shannon