Created
November 23, 2019 20:49
-
-
Save pvin/aa8fde1dc9d5d5bd332fc7430ee1b86d to your computer and use it in GitHub Desktop.
bootstrap-3-0-full-length-body-sidebar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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