Hi There,
Thank you for the clarification, ok let’s take that example. If you notice the first and last section in there is taking the full height of the screen regardless of the screen size (desktop or mobile). That is because they applied a min-height: 100%
in those sections. This ensures that the section has a height to showcase the background-image even if there is only one small element on that section.
And they did not actually use a complex parallax effect on that section, they only use background-attachment: fixed; to get that effect.
So if you want that effect, please turn off the Parallax effect on your section and add this on the Section’s Element CSS area.
$el {
min-height:100vh;
}
$el [class*="x-bg-layer-lower"] {
background-attachment: fixed;
}
Now the tricky part.
The background-image is responsive in a different manner (see my previous reply)
Those background-image are set to background-size: cover; so it won’t shrink nor squeezes/stretches. But it will make the side areas not visible. Imagine fitting a landscape image on a portrait container without cutting it or squeezing it. The only way around this is to position your focus object in the center of the image like what they did on that example site.
The background-attachment: fixed; will take care of that.
Hope this shed some lights,
Cheers!