Skip to content

Instantly share code, notes, and snippets.

@alexwoollam
Last active September 30, 2018 17:32
Show Gist options
  • Save alexwoollam/b30c6bc45bbc3963e14052135fc3659b to your computer and use it in GitHub Desktop.
Save alexwoollam/b30c6bc45bbc3963e14052135fc3659b to your computer and use it in GitHub Desktop.
wordpress match sidebar and body height
//This will match the pages content height if the sidebar is bigger.
getSidebarHeight();
function getSidebarHeight(){
var sidebar = document.getElementById('sidebar_inner');//<- Sidebar ID
var sidebarHeight = sidebar.offsetHeight;
var body = document.getElementById('postBody'); //<- Body ID
var contentHeight = body.offsetHeight;
var sidebarHeightPixels = sidebarHeight + "px";
if(contentHeight < sidebarHeight){
document.getElementById('postBody').style.minHeight = sidebarHeightPixels;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment