On my homepage I have an issue with the cropping of some images in color sections on my iPhone in portrait mode. (See Images) I have changed the background image position but it doesn’t help. These images look good on all other screen sizes. Is there a way that these images can be moved down in these sections so the heads aren’t cut off on my iPhone? Thanks in advance!
Hey djshortkut!
Thank you for using Enfold.
Please try this:
@media only screen and (max-width: 767px) {
.avia-full-stretch {
background-size: cover !important;
background-position: 50% 70% !important;
}
}
Regards,
Ismael
Thanks Ismael! I input the code but it didn’t make a difference. The images didn’t lower down at all. Can you let me know how to fix this?
Hi!
It’s probably because of the background-size property. Please try this instead:
@media only screen and (max-width: 767px) {
.avia-full-stretch {
background-position: 50% 100px !important;
}
}
Adjust the 100px value as needed.
Regards,
Ismael
Thank you Ismael, that worked perfectly!
Is there a way I can do the same thing with my fullscreen slider at the top of my homepage in landscape mode only so the heads on the image don’t get cut off by the header? Thanks!
Hey!
Is it located on another page? I can’t see it on the home page. Please try this inside the css media query:
.avia-fullscreen-slider .avia-slideshow>ul>li {
background-position: 50% 100px !important;
}
Cheers!
Ismael
Thanks Ismael! You can close this thread.