Site logo

Archived topic

Sticky Sidebar

5 replies · Started by V on August 12, 2021

Viewing posts 1–6 of 6

Hi, I am a new member. I have a right sidebar - but I am not able to make it 'sticky'. For example, when I scroll down in an article the sidebar goes up, rather than being there on the right. Can you please help? Below is a link to one of the articles:

https://mrfiner.com/the-cult-of-overwork-and-why-we-still-value-it/

Hi there,

Can you try adding this CSS?

@media(min-width: 769px) {
    .inside-right-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 50px; /* Adjust sticky position */
    }
}

Adjust the top value to your preference.

Thank you so much for the quick response! This works!!

Glad it works for you. No problem. :D

I just want to say thanks so much for this little bit of CSS! I had this same question and just added the code to my site — it works perfectly! Thank you :)

@Caro,

No problem. Glad it works for you as well. :D

This archived topic is closed to new replies.