I'm using a jQuery equal heights plugin for my columns but the designer wants from the price down to the add to cart button equalized as well. Is this possible to do with jQuery? I've tried adding it to the existing equal heights but actually I'm not that sure what I'm doing.
Here is the jquery:
(function($) {
$.fn.equalHeights = function(minHeight, maxHeight) {
tallest = (minHeight) ? minHeight : 0;
this.each(function() {
if($(this).height() > tallest) {
tallest = $(this).height();
}
});
if((maxHeight) && tallest > maxHeight) tallest = maxHeight;
return this.each(function() {
$(this).height(tallest).css("overflow","hidden");
});
}
})(jQuery);
This is the way one of the boxes is laid out:
<ul id="phones" class="clearfix">
<li class="phone">
<div class="top"></div>
<img src="/_img/2012/accessories_product.jpg" alt="phone" width="192" height="120"/>
<h2>BLACKBERRY MICRO-USB VEHICLE POWER ADAPTER</h2>
<p>Product description sed ut perspici atis unde omnis iste natus sit volupt.</p>
<div class="btm">
<h3 class="price">$29.99</h3>
<p class="modelnumb">MODEL #: 1234567890</p>
<a href="#" class="btn btn_addtocart">Add To Cart</a>
</div>
</li>
I'm calling it on the page like this:
<script>
$j(document).ready(function() {
$j("#phones > li.phone").equalHeights(412);
});
</script>
I've included an image of what it's looking like now:

If anyone could give me some help I would appreciate it. Thanks in advance.
<p>tags a fixed height? – Lenny Jun 4 '12 at 19:15