Hi there!
Sorry for your issue.
Safari in iOS does not support background-attachment: fixed; CSS property. Therefore, this behavior should be disabled for mobile devices.
To do this, add your own class name in the section's CSS Class field and use following code.
@media (max-width: 991px) {
.your-class-of-section {
background-attachment: scroll !important;
}
}
You can check out this conversation too:
https://www.joomshaper.com/forum/question/18588
Yes, the issue still persists as IOS still doesn't support the feature.
Best Regards