Site logo

Archived topic

Static Left Sidebar possible?

1 reply · Started by Gedaly on October 15, 2019

Viewing posts 1–2 of 2

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!

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;
    }
}
This archived topic is closed to new replies.