Skip to content

Instantly share code, notes, and snippets.

@WillBrubaker
Last active January 1, 2016 12:39
Show Gist options
  • Save WillBrubaker/8146065 to your computer and use it in GitHub Desktop.
Save WillBrubaker/8146065 to your computer and use it in GitHub Desktop.
Equal Height Columns - specific to the genesis framework grid loop
jQuery(document).ready(function(){
var highestBox = 0;
$('.genesis-grid').each(function(){
if($(this).height() > highestBox)
highestBox = $(this).height();
});
$('.genesis-grid').height(highestBox);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment