Archived topic
Sticky container
7 replies · Started by Wouter on November 21, 2022
Hi,
I am trying to make a sticky container in a grid with two other containers.
So I want the container to stay when scrolled down.
I have tried to follow the options from the other threads, unfortunately without success.
Thanks in advance for the effort.
Hi there,
the Grid Block you used to create that layout, select that, and set its Vertical Alignment to default this will force the columns to be the same height, which we require to make the contents sticky.
If you need to adjust the vertical alignment then you can do it that in each of the columns Container Blocks.
Once you done that give the Grid Block an Advanced > Additional CSS Class of: has-sticky-column
And select the Container Block you want to be sticky and give a CSS Class of: is-sticky-column
Let me know once thats done and ill provide some CSS
Hello,
Thanks for you reply.
I have followed your instructions!
Can you confirm the URL ? The one you provided earlier is returning a 404 error
Hello David,
See below.
Add this CSS:
@media(min-width: 1024px) {
.is-sticky-column .gb-inside-container {
position: sticky;
top: 0;
}
}
Works perfect! Thanks for your help and quick response.
You're welcome