Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1233255

    I Import this Demo as base for http://www.taptouch.net. And found that the middle 2 blue background picture (cellphone) can not displayed correctly on iPAD (both Chrome and Safari) while all good on Macbook or PC and Android Phones.

    Then I check original Demo and found that bug is there already. Could you please help to have a look into that?

    #1234087

    Hey shtzhang,

    Thank you for the inquiry.

    This is actually an issue with iOS devices and fixed background images.

    iOS has an issue preventing background-attachment: fixed from being used with background-size: cover – see details

    // https://caniuse.com/#feat=background-attachment

    To fix the issue, we can reset the background attachment from fixed to scroll. Add this code in the Quick CSS field or the child theme’s style.css file.

    @media only screen and (max-width: 1366px) {
        .avia-bg-style-fixed {
            background-attachment: scroll !important;
        }
    }

    Please don’t forget to toggle or disable the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    #1234259

    Thank you and got it.

    #1234264

    Hi,

    Did you need additional help with this topic or shall we close?

    Best regards,
    Jordan Shannon

    #1234327

    I like the static background and don’t know whethere we ca do it on iPAD.

    #1234832

    Hi,

    What do you mean by “static” background? Unfortunately, we can’t really do anything with the fixed background issue because it’s not supported by iOS devices including iPads as we explained previously.

    Thank you for your patience.

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.