Quote:
|
try removing the height and widths in the html
|
Why ? It is ALWAYS a good practice to put the dimensions of an image in the HTML, you NEVER want to force the browser to figure out the dimensions!
Couple of things I see:
-IE doesn't support the hover pseudoclass on anything but the <a> tag.
-You are triggering IE6's doubled-float margin bug when you float those boxes left then give them a left margin - IE6 doubles that margin. You'll need conditional comments and a separate css file that contains ONLY the fixes needed for IE. To squash this bug, you need to add display:inline to those boxes.
- You have an unclosed <span> tag in your menu - validate your code
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|