Skip to content

Instantly share code, notes, and snippets.

@pvin
Created November 23, 2019 20:49
Show Gist options
  • Save pvin/aa8fde1dc9d5d5bd332fc7430ee1b86d to your computer and use it in GitHub Desktop.
Save pvin/aa8fde1dc9d5d5bd332fc7430ee1b86d to your computer and use it in GitHub Desktop.
bootstrap-3-0-full-length-body-sidebar
https://stackoverflow.com/questions/20128472/bootstrap-3-0-full-length-body-sidebar
.user-show-navigation
--------------
var document_height = $(document).height();
var sidebar = $('.user-show-navigation');
var sidebar_height = sidebar.height();
if (document_height > sidebar_height) {
sidebar.css('height', document_height - 600);
}
------
.user-show-navigation {
background-color: #173640;
position: absolute;
min-height: calc(100% - 50px);
}
--------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment