Seeking a solution for creating a full height sidebar (#left) along with footer using the bootstrap framework.
Check out the fiddle linked here.
I have experimented with the code below, but it doesn't work well with the footer. The objective is to make the sidebar cover 100% of the page height.
#left {
position: fixed;
top: 51px;
bottom: 0;
left: 0;
z-index: 1000;
display: block;
padding: 20px;
overflow-x: hidden;
overflow-y: auto;
background-color: #f5f5f5;
border-right: 1px solid #eee;
}