Archived topic
right sidebar sticky
7 replies · Started by robin on December 29, 2022
Hello,
How to make the right sidebar sticky like in the "info" demo theme?
Thank you
Hi Robin,
For reference, can you provide a link where we can view your right sidebar?
We'll asses how to make it sticky afterward.
You may use the Private Information field for this: https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Hi there,
if you can remove the CSS you have added, and use this instead:
@media (min-width: 768px) {
#right-sidebar .inside-right-sidebar {
position: sticky;
top: 80px;
}
}
Hi,
Thank you, but I would like the sidebar to be sticky when the bottom of the sidebar is reached as on this site: https://www.dicotravail.com/convention-collective/fleuristes-vente-services- Animaux-jo-3010- idcc-1978/
thanks
So this CSS:
@media (min-width: 768px) {
#right-sidebar .inside-right-sidebar {
height: 100%;
}
#right-sidebar .inside-right-sidebar aside:last-child {
position: sticky;
top: 80px;
}
}
It will make the last widget sticky. You would need to add whatever content you want to be sticky in that last widget, if need be use a Group Block to combine multiple items
it works ! thanks
Glad to hear that
