[Support request] Sticky sidebar

Home Forums Support [Support request] Sticky sidebar

Home Forums Support Sticky sidebar

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1587720
    Ash

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

    #1587943
    David
    Staff
    Customer Support

    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 */
        }
    }
    #1589101
    Ash

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

    #1589175
    David
    Staff
    Customer Support

    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.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.