Hello @logoglo,
You have inserted this custom CSS:
@media(max-width:978px){
.x-bg-layer-lower-image{
background-position:top -350px center !important;
background-size:cover!important;
}
}
@media(max-width:767px){
.x-bg-layer-lower-image{
background-position:top -200px center !important;
background-size:cover;
}
}
.x-bg-layer-lower-image{
background-attachment:fixed;
}
This means that the background attachment is still fixed
even on smaller devices. In my previous post, I have indicated that you use @media CSS rule so that it will only be applied on larger screens. You should need this code instead:
@media(max-width:978px){
.x-bg-layer-lower-image{
background-position:top -350px center !important;
background-size:cover!important;
}
}
@media(max-width:767px){
.x-bg-layer-lower-image{
background-position:top -200px center !important;
background-size:cover;
}
}
@media(min-width: 980px){
.x-bg-layer-lower-image{
background-attachment:fixed;
}
}
The code above serves as an example code. Feel free to modify it when needed. Please note that custom coding is beyond the scope of our support. You will have to maintain any custom coding to make sure that it will still work after any updates or does not create any issues or incompatibility in the future.
Best Regards.