Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1208221

    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

    #1208337

    Hey MikeTandySwag,

    Please provide a link to the site/page in question so we can look into this further.

    Best regards,
    Jordan Shannon

    #1208338

    You got it! It’s in the private content

    • This reply was modified 4 years, 6 months ago by MikeTandySwag.
    #1208351

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.