Archived topic
Sticky sidebars
3 replies · Started by Albert on February 24, 2022
Viewing posts 1–4 of 4
Hello! How do I fix the sidebars and make them sticky? I consulted the forum and tried to copy the codes but failed.
The page is https://guia.amsterdam
Hi there,
try this CSS:
@media(min-width: 769px) {
.inside-right-sidebar {
position: -webkit-sticky;
position: sticky;
top: 60px;
}
}
Adjust this: top: 60px; to set the sticky top position.
Thank you!
You're welcome
This archived topic is closed to new replies.