Home › Forums › Weaver Xtreme Theme › How to target iPad Portrait Orientation? › Re: How to target iPad Portrait Orientation?
March 24, 2015 at 16:59 UTC - Views: 6
#20803
Moderator
Yes get rid of the rules with .is-xxx ,and use an @media query instead and find the threshold value that works
@media only screen and (max-width:780px) {
.cta {display:none;}
}
If needed there is also a way to differentiate landscape and portrait with media query, but the width should be sufficient.