Site logo

Archived topic

How to make spesific sticky sliders

3 replies · Started by gelistirici on November 18, 2022

Viewing posts 1–4 of 4

Try this CSS:

@media (min-width: 769px) {
.inside-right-sidebar {
    height: 100%;
}

.is-right-sidebar aside#block-2, .is-right-sidebar aside#block-13 {
    position: sticky;
}

.is-right-sidebar aside#block-2 {
    top: 25px;
}

.is-right-sidebar aside#block-13 {
    top: 170px;
}
}

It's worked! Thanks.

No problem :)

This archived topic is closed to new replies.