Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #574330

    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!

    #575533

    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

    #576124

    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?

    #576334

    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

    #576601

    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!

    #576854

    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

    #576876

    Thanks Ismael! You can close this thread.

    #576953

    Hey!

    Great! Glad we could help. :)

    Regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Adjust Cropping of images on iPhone’ is closed to new replies.