Hi lprintz,
After some experimenting I noticed that you had the product link, product image and quick look elements as siblings, where the image is in front of the link:
Code:
<div class="prodThumb">
<a class="details" href="_shop_productDetail.html"></a>
<img src="../template/images/cart/prod_med.jpg" width="160" />
<a class="ql" href="#prodDetailSmall" name="modal"></a>
</div>
I didn't try swapping the link and image tag orders around, but I placed the image within the product link and it seemed to work fine in IE and FF:
Code:
<div class="prodThumb">
<a class="details" href="_shop_productDetail.html">
<img src="../template/images/cart/prod_med.jpg" width="160" />
</a>
<a class="ql" href="#prodDetailSmall" name="modal"></a>
</div>
You might not even need some of the styles applied to the link with this configuration, such as the block and absolute placement.
Bookmarks