wedocs
wedocs copied to clipboard
Sidebar fixed to bottom of screen
Notice on http://docs.wedevs.com/page-templates/

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/