Archived topic
How to make spesific sticky sliders
3 replies · Started by gelistirici on November 18, 2022
Viewing posts 1–4 of 4
Hi, i want to make my spesific slider widgets sticky:
my website
Like only first and last of them:
https://prnt.sc/jirMz0aKRzPA
How can i do that?
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.