Wierd Blue Lines Appearing Between Rollovers in Iexplorer Only

Phreaddee

Super Moderator
Staff member
well the easy answer would be because they are images IE is adding a border (blue) so you will need to add border="0" to the images or in the css have img {border:0;}

the more correct answer would be to make your menu as an ul menu
HTML:
<ul>
<li><a href="/path-to-url">Home</a></li>
<li><a href="/path-to-url">About</a></li>
<li><a href="/path-to-url">Impacts</a></li>
<li><a href="/path-to-url">Timeline</a></li>
<li><a href="/path-to-url">Interview</a></li>
<li><a href="/path-to-url">Extra</a></li>
</ul>
and style it with css.
http://www.webdesignforum.com/10971-tutorial-css-menu-basic.html
is a good starting point.
once styled, then you'll have to worry about the rounded corners in IE. css3pie will fix that.
 
Top