Thanks! When I look at it in Firebug.. I can see the image and image box divs are set with a width and height.. when I remove these in Firebug and add the clear: both it all seems to line up okay. But when I look into the product.tpl file I know where the height setting is for the image div since we added that there but for the image box div I am not seeing where the height setting is at to remove it. This is the code that is for the image box div in the product.tpl file...
Code:
<div class="image-box" style="{if $max_image_width gt 0}width: {math equation="x+14" x=$max_image_width}px;{/if}">
{include file="product_thumbnail.tpl" productid=$product.image_id image_x=$product.image_x image_y=$product.image_y product=$product.product|escape tmbn_url=$product.image_url id="product_thumbnail" type=$product.image_type}
</div>
I have looked around everywhere but I am not seeing where the height setting is for the image box div.