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

    Hi everyone!

    I have a nice parallax background that I need to disable on phones & tablets. I was able to disable on both EXCEPT for tablet landscape view.

    Here’s what I used for css…

    @media only screen and (max-width: 900px) {
    #av_section_4 {
    display:none !important;
    }
    }

    #855109

    Hey 34oldcat29,

    Try the following for landscape:

    
    /* Landscape */
    @media only screen 
      and (min-device-width: 768px) 
      and (max-device-width: 1024px) 
      and (orientation: landscape) 
      and (-webkit-min-device-pixel-ratio: 1) {
    
    }

    Best regards,
    Jordan Shannon

    #855133

    Yay!
    Worked great, thanks!!

    #855218

    Hi,

    You are welcome!

    Best regards,
    John Torvik

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