joanzn
10-27-2011, 09:08 PM
I have some VERY simple code here just to figure out WTF to do for links text decoration in stupid ***** IE!
SO I built a simple menu with images as the menu with javascript onmouse events.
<div id="head">
<ul class="menu">
<li>
<a href="#" onmouseover="" onmouseout=""><img src="" id="1" /></a>
</li>
</ul>
</div>
ok so I made like 5 links like this for the nav menu. then I styled the whole thing so that if floats left an list has no style, at the top with no margin blah,blah,blah. the code for making these links decoration go way for IE isn't working at all.
so far i used :
#head{
height:20px; //height of the imgs
width:1280px; // width of all the imgs floating left
margin:0;
padding:0;
}
//Ive tried all of these combos below
/* .menu li a{
text-decoration:none
}
.menu li a{
text-decoration:none;
}
.menu a{}// tried this alone and with all the pseudo classes as well
.menu li a:link{text-decoration:none}
.menu li a:visited{text-decoration:none}
.menu li a:active{text-decoration:none}
.menu li a:hover{text-decoration:none}
.menu li a:focus{text-decoration:none}
*/
I'm lost and sick of stupid IE .. I wish we didn't have to code for them asswads.
Any Help.. much thanks
SO I built a simple menu with images as the menu with javascript onmouse events.
<div id="head">
<ul class="menu">
<li>
<a href="#" onmouseover="" onmouseout=""><img src="" id="1" /></a>
</li>
</ul>
</div>
ok so I made like 5 links like this for the nav menu. then I styled the whole thing so that if floats left an list has no style, at the top with no margin blah,blah,blah. the code for making these links decoration go way for IE isn't working at all.
so far i used :
#head{
height:20px; //height of the imgs
width:1280px; // width of all the imgs floating left
margin:0;
padding:0;
}
//Ive tried all of these combos below
/* .menu li a{
text-decoration:none
}
.menu li a{
text-decoration:none;
}
.menu a{}// tried this alone and with all the pseudo classes as well
.menu li a:link{text-decoration:none}
.menu li a:visited{text-decoration:none}
.menu li a:active{text-decoration:none}
.menu li a:hover{text-decoration:none}
.menu li a:focus{text-decoration:none}
*/
I'm lost and sick of stupid IE .. I wish we didn't have to code for them asswads.
Any Help.. much thanks