Reputation: 22507
Open the following page in IE7 and try clicking on the image within the category boxes:
http://www.southwestmedical.com/category/Diagnostic-Products/354
As far as I can tell, I'm not doing anything outside of the scope of (X)HTML/CSS, why am I not able to click these?
Upvotes: 0
Views: 2352
Reputation: 22507
The problem was the display: block
on the span surrounding the img. Removed that and tweaked the styles to make it look the same and all is good now.
Upvotes: 1
Reputation: 449435
This seems to be a known phenomenon:
giving the img
a float: left
as well might help, and should cause no change in layout.
Upvotes: 0