Equal height columns code not working

Hi,

I’ve got three cols in the footer of my site: http://versastudio.com

I’m using a simple equal heights script, but it’s not cooperating. Ideas?



function equalHeight2(group) 
{     tallest = 0;     group.each(function() {         
thisHeight = $(this).height();         
if(thisHeight > tallest) {             
tallest = thisHeight;         }     });     
group.height(tallest);     
}          
$(document).ready(function() {equalHeight2($(".equal-height-footer-col"));});

Seems to be working fine in Chrome. What browser are you checking this in?

I fixed it - padding has to be the same on the divs or the script doesn’t work.

Thanks.