Good afternoon,
The first section of each of my pages had a large background image inside it. I would like it so as you scroll it does not move and the following sections on the pages go over the top. Like this but no need for the fading on scroll:
Parallax does not give the right effect and I thought I had worked it out by doing this css:
.Header-Section .x-bg-layer-lower-image {
background-attachment: fixed;
}
But it does not work on devices (Ipad, Iphone etc)
I also tried to play with CSS and positioning:
.Header-Section {
position: -webkit-sticky; /* Safari */
position: sticky;
}
But it did not work
Please assist - thank you!
Jason