Site logo

Archived topic

right sidebar sticky

7 replies · Started by robin on December 29, 2022

Viewing posts 1–8 of 8

Hello,

How to make the right sidebar sticky like in the "info" demo theme?

Thank you

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;
    }
}

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

This archived topic is closed to new replies.