Skip to content

Instantly share code, notes, and snippets.

@don12pt5
Forked from billerickson/sidebar.js
Created February 26, 2013 09:39
Show Gist options
  • Save don12pt5/5037294 to your computer and use it in GitHub Desktop.
Save don12pt5/5037294 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function($){
var sidebarHeight = $("#sidebar").height() - 50;
var bodyHeight = $("#content-sidebar-wrap").height();
if (bodyHeight > sidebarHeight) {
$("#sidebar").css( 'min-height', bodyHeight + 50 );
$("#content-sidebar-wrap").css( 'min-height', bodyHeight + 50 );
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment