Parallax effect on iPhone

Hi there,

I use parallax effect with a code you gave me…

Parallux effect
.x-bg-layer-lower-image {
background-attachment:fixed;
}

And it works out fine. As this parallax effect doesn’t work on smaller devices, can you please send me an additional code to use this code only on bigger advices (like code… only for devices more than 989px).
I hope you understand what I mean.

Thank you so much
Kerstin

Hey @praxisnah2016,

Try this code

@media (min-width:989px) {
.x-bg-layer-lower-image {
background-attachment:fixed;
}
}

Please note that the parallax feature included out of the box will not work on mobile because of its performance drawback. The custom codes given here serves only as a guide so please note that issues that will arise from the use of the code and any enhancement would be outside the scope of our support.

Thanks.

Works fine!
Thank you so much!

You’re welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.