wedocs icon indicating copy to clipboard operation
wedocs copied to clipboard

Sidebar fixed to bottom of screen

Open tareiking opened this issue 12 years ago • 1 comments

Notice on http://docs.wedevs.com/page-templates/ image

tareiking avatar Apr 02 '14 09:04 tareiking

Can be fixed by adding relative max-height and overflow-y to the sidebar. e.g. in your child theme css:

.bs-sidebar {
    max-height: 80%; /* fallback for old browsers */
    max-height: calc(100% - 220px); /* adjust 220px to meet your website's header height*/
    overflow-y: auto;
}

consquently you could let the sidebar disappear under the footer when scrolling all the way down the page :

footer.content-info {
    z-index: 99;
    position: relative; 
}

In action: http://dev201.nl/laravel-cheatsheet/

status201 avatar Sep 06 '15 14:09 status201