background-attachment: fixed
on older iPhones for performance reasons.The "fixed" background property in Webflow may not work on older iPhones like the iPhone 5 due to how iOS handles background-attachment: fixed. This is a known limitation in WebKit-based browsers (Safari, Chrome on iOS).
Instead of using background-attachment: fixed, try one of these methods:
Use a "Div Block" with Absolute Positioning
Place the background image in a full-screen Div Block.
Set it to absolute (Full > Cover the Entire Viewport).
Adjust the z-index so content moves over it.
Use CSS Transform Trick
Apply transform: translateZ(0);
to the background element.
This forces GPU rendering, sometimes solving the issue.
Use an Alternative Effect (Parallax Scripts)
Consider using a JavaScript parallax library (like Rellax.js) to mimic a "fixed" effect.
This approach moves the background dynamically instead of relying on CSS fixed
.
The "fixed" background property doesn't work on iPhone 5 due to iOS restrictions. Try using a full-screen div, CSS transform tricks, or JavaScript-based parallax effects to achieve a similar effect.