Unfortunately there is no vertical-align option on divs.
I believe you would need to use nested divs and set a fixed height on the one containing the image;
Code:
<div class="onsaleitem">
<div class="imagecontainer" style="height:250px;">
<a href="product-display_Art-W602_dGFibGU9cHJvZHVjdCZmaWVsZD1Db2RlMSZ2YWx1ZT1XNjAy.ghtml" title="Art Skyline"><img src="/product/thumbs/W602-Carbone.jpg" border="0" width="100" alt="Skyline" /></a>
</div>
<br />Sale Price: £65
</div>
Or put the price in a div and position it absolutely to the botton of the outer onsaleitem div. Either way though, this will only work if a fixed height is specified either for the image or the onsaleitem div.
Bookmarks