Site logo

Archived topic

Sticky sidebar

3 replies · Started by Ash on December 19, 2020

Viewing posts 1–4 of 4

I would like to have a sticky sidebar for my blog.
The CSS in other posts didn't work. Can you advise?

Hi there,

use this CSS:

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

Inserted into all.css (assets/css/all.css)?

Add it to your Customizer > Additional CSS.
Of if you have a Child Theme you can add it to the Child Themes styles.css

You should never edit the parent themes files as any changes will be lost when the theme is updated.

This archived topic is closed to new replies.