folgendes problem, ich habe ein bgimage mit h und v linien. darüber stehen textlinks. jedet text link ist mit einer v-line von der grafik getrennt. bei einem hover möchte ich nun die h-line rot haben. das funktioniert soweit auch im FF nur der IE zeigt es nicht an, und ich finde irgendwie nix was mir hilft... hoffe ihr habt eine kreative idee ;-)
HTML
HTML-Code:
<div id="corenavi">
<ul>
<li>
<a href="index.php?id=1" class="topnav">HOME</a>
<a href="index.php?id=2" class="topnav">GHETTO NEWS</a>
<a href="index.php?id=11" class="topnav">STORY</a>
<a href="index.php?id=3" class="topnav">ROSTER</a>
<a href="index.php?id=4" class="topnav">MEDIA</a>
<a href="index.php?id=5" class="topnav">GO FOR IT</a>
</li>
</ul>
CSS
HTML-Code:
#corenavi{
position: relative;
width:700px;
height:70px;
text-align:right;
z-index:1;
margin-bottom:0px;
margin-top:0px;
margin-left:0px;
background-image:url(img/bg_nav_image.gif);
background-repeat:no-repeat;
}
#corenavi ul{
padding-top:35px;
padding-right:5px;
margin:0px;
}
#corenavi ul li{
font-size:8px;
font-family:Arial, Helvetica, sans-serif;
display:inline;
list-style:none;
margin:0px;
padding:0px;
}
a.topnav {
font-family: Arial, Helvetica, sans-serif;
font-style: normal;
line-height: 16px;
font-weight: normal;
font-variant: normal;
text-transform: uppercase;
text-decoration: none;
color: #FFFFFF;
letter-spacing: 0.08em;
word-spacing: normal;
padding:10px;
}
a.topnav:hover, a.topnav:focus, a.topnav:active {
color:#666666;
padding:10px;
border-bottom:1px;
border-bottom-color:#FF0000;
border-bottom-style:solid;
text-decoration: none;
}
tausend dank vorab für eure hilfe!!!