Site logo

Archived topic

Right sidebar sticky

3 replies · Started by ammgbr on February 26, 2023

Viewing posts 1–4 of 4

Hi, is there a css to make the right sidebar (link below) sticky?

Ideally, I would like to avoid having to use a plugin if possible.

Hi there,

Try this:

@media(min-width: 769px) { 
    .inside-right-sidebar {
        position: sticky;
        top: 80px;
    }
}

Thank you.

I set the sidebar on the left and changed the css accordingly.

The sticky works but notice this distorts the alignment of my content.

Is it possible to have instead the left sidebar moving further to the left while the main content remains aligned in the centre of the page?

Is it possible to have instead the left sidebar moving further to the left while the main content remains aligned in the centre of the page?

The sidebar can only be within the content container which is 1200px in your case.

So no, it can not go to more left unless you increase the content container width, but it will change your entire site's layout.

This archived topic is closed to new replies.