Site logo

[Support request] Parallax images not showing on tablet

Home Forums Support [Support request] Parallax images not showing on tablet

Home Forums Support Parallax images not showing on tablet

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

    The two parallax images on the home page are not rendering correcting on ipad. They look ok on mobile and desktop. Is there any setting I should tweak?

    I found on a google search that this is a common issue. Is there a workaround?

    #2502213
    Sarina
    #2502216
    Sarina
    #2502289
    Fernando
    Customer Support

    Hi Sarina,

    Yes, apple devices seem to have issues with fixed backgrounds. As far as I know, there’s no workaround yet CSS-wise.

    The link you provided is a fix in the sense that it no longer sets the background to “parallax”. It just reverts to normal behavior.

    The code for that relevant to the Block you used is this:

    @media (min-width: 769px) and (max-width: 1024px) {
        .wp-block-cover.is-light.has-parallax > .wp-block-cover__image-background.has-parallax {
            background-attachment: scroll !important;
            background-size: cover;
            height: 100%;
            overflow: hidden;
        }
    }

    This will work on all tablet devices though.

    #2502345
    Sarina

    ok,thanks

    #2502354
    Fernando
    Customer Support

    You’re welcome, Sarina!

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