[Resolved] Need help making left sidebar sticky

Home Forums Support [Resolved] Need help making left sidebar sticky

Home Forums Support Need help making left sidebar sticky

Viewing 6 posts - 16 through 21 (of 21 total)
  • Author
    Posts
  • #1425776
    Matt

    No, ideally I want it in Left Sidebar. When testing here, it disappears completely.

    I tested Right, to be comprehensive, as instead of disappearing, it relocated to the left side of my body text.

    Since that’s broken, too, I reverted to the Left hand side (and unaffixed it) until I can find an answer to the problem.

    DOes that make sense?

    #1425777
    Leo
    Staff
    Customer Support
    #1425813
    Matt

    By golly, it works!

    Last thing, I promise: what CSS can I enter to disable this on mobile?

    #1425851
    Leo
    Staff
    Customer Support

    You can wrap in media query like this:

    @media (min-width: 769px) {
        .site-content {
            display: flex;
        }
        .site-content > div {
            left: unset !important;
        }
        #left-sidebar {
            order: -1;
        }
        #left-sidebar .inside-left-sidebar {
            position: -webkit-sticky;
            position: sticky;
            top: 80px;
        }
    }
    #1426611
    Matt

    Thank you so much, Leo. For everything. Making sure to leave you a review now.

    #1426691
    Leo
    Staff
    Customer Support

    No problem 🙂

    And thanks!

Viewing 6 posts - 16 through 21 (of 21 total)
  • You must be logged in to reply to this topic.