[Support request] Static Left Sidebar possible?

Home Forums Support [Support request] Static Left Sidebar possible?

Home Forums Support Static Left Sidebar possible?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1035872
    Gedaly

    Hello!

    Is it possible to create a static left sidebar like https://laravel.com/docs/6.x ?

    Seems like the sidebar and content are in the same container so I’m not quite sure how to make it work. the WP sticky sidebar plugin can make the sidebar content float, but I don’t know how to make make the sidebar to be full height.

    Don’t have example yet, working on a local site for now.

    This may be a little outside your support scope, so no worries if you can’t help.

    Thanks so much!

    #1036056
    David
    Staff
    Customer Support

    Hi there,

    try this wit a left sidebar set-up:

    @media (min-width: 769px) {
        .left-sidebar .site-content {
            display: flex;
        }
    
        #left-sidebar {
            background-color: red;
        }
    
        .inside-left-sidebar {
            position: sticky;
            position: -webkit-sticky;
            top: 0;
        }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.