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;
}
}
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
Yay!
Worked great, thanks!!
Hi,
You are welcome!
Best regards,
John Torvik