Archived topic
Making container sticky on mobile devices.
5 replies · Started by Sean on March 9, 2023
Hi,
I would like to make the container sticky on mobile devices on the following page.
https://tudorhouseholidays.co.uk/the-hepburn-scarborough/
I need the slideshow to be sticky on mobile, it's placed within a container.
Kind regards,
Sean
Hi there,
1. Add this CSS to your site:
@media(max-width: 768px) {
.is-sticky-mobile {
position: sticky;
top: 0;
}
}
Note the top: 0; you can change this to a value eg. top: 60px; to offset the sticky position.
2. Select the Container Block the slider is in, and in Advanced > Additional CSS Class(es) add: is-sticky-mobile
Hi,
How do I do it so it appears below the sticky header?
Hi Sean,
Try this code instead:
@media(max-width: 768px) {
.is-sticky-mobile {
position: sticky;
top: 220px;
}
}
Thank you that worked brilliantly!
You're welcome, Sean!