My fullscreen slider on my iPad and iPad Mini in landscape mode extends a little farther than full screen (see image) I noticed that this also happens when I pull up the demo. It seems to work fine on all web browsers and iPhone. Not sure if this is a bug but is there some quick CSS you can give me to fix this please? Thanks!
Hey!
Try adding this code to the Quick CSS:
.avia-ipad #top .scroll-down-link{
bottom: 25px !important;
}
Cheers!
Josue
That’s what I needed but is there a way to make it so it only moves the arrow up on the iPad and iPad Mini screen size in landscape mode? This code raises the arrow in landscape and portrait mode but portrait mode is ok and doesn’t need to be changed, just landscape mode. Thanks!
Hey!
You can wrap that in a media query that targets only iPad landscape:
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
.avia-ipad #top .scroll-down-link{
bottom: 25px !important;
}
}
Reference: http://stephen.io/mediaqueries/
Regards,
Josue
That did the trick. Thank you very much!
You are welcome, glad to help :)
Regards,
Josue