Hi All,
Thanks for the support so far it has been great!
One last thing I need some advice on is how images are best displayed when using the full screen slider with mobile devices in portrait view. Obviously a landscape image is always best viewed in landscape and Enfold does a great job in adjusting the content to work with both views. With images it does struggle a little in terms of getting a best fit. Is there anything you can suggest in getting a best fit?
Is there any code available that could be used to help ensure that as much of the image is displayed as possible in both views? Possibly a scalling ratio based on the screens width to adjust the image to a best fit?
Thanks in advanced!
Marc
Hi MarcG5!
Perhaps your looking for something like this?
@media only screen and (max-width: 479px) {
.av_fullscreen, .av_fullscreen * { max-height: 200px !important; }
}
That will shorten the height a bit on small screens so it appears to be more landscape.
Cheers!
Elliott
Perfect – Thanks once again Elliott!