Hi There,
The parallax functionality is still disabled on mobiles for performance reasons.
You need custom code to make it work on the mobile device. You may try adding the following CSS to your Theme Options -> CSS area.
@media (max-width:979px){
.x-section.bg-image.parallax, .x-section.bg-pattern.parallax {
background-attachment: fixed !important;
background-position: center center !important;
}
}
We aren’t sure if the code will work 100%, but you can try it. For specific issues, read the following (https://stackoverflow.com/questions/23236158/how-to-replicate-background-attachment-fixed-on-ios)
Thanks for understanding!