I found a script here that equalizes the height of divs in a row (bootstrap). How do you add 20 for instance to the new height it calculates?
Here is the script and a jsFiddle: http://jsfiddle.net/MVP3C/
$('.well, .alert').height(function () {
var h = _.max($(this).closest('.row').find('.well, .alert'), function (elem, index, list) {
return $(elem).height();
});
return $(h).height();
});