I have been working on this for a while and I can't seam to get it right. I have this page:
http://pypestream.hs-sites.com/about
using bootstrap 3 for structuring. The right sidebar is absolute positioned. Unfortunately the pages content isn't tall enough to allow for the height of the sidebar.
I have the content col container mimicking the height of the sidebar which is kind of working (the sidebar is hanging over the footer a bit) but now the issue is that if you open one of the drop downs in the sidebar it doesn't dynamically change the content wrapper to match so the footer doesn't get pushed down. Consequently the sidebar gets cut off.
Any ideas or suggestions would be appreciated.
Jquery:
$(document).ready(function() {
$("#Main-Content").css({'height':($(".bios").height()+'px')});
});