Hallo,
das mit dem "a" is egal. ich habs ausprobiert und es funktioniert immer noch nicht =(..noch ne idee?
Naja, deine richtigen Links müssen sich ja irgendwie von den textlinks unterscheiden. Sonst gäbe es das Problem nicht. Poste doch mal HTML-Code.
Folgender Code funktioniert jedenfalls:
<html>
<head>
<title>Test</title>
<style>
A.navi:link, a.navi:visited, a.navi:active {
display: block;
color: #5D3A00;
font-family: tahoma;
font-size: 11px;
font-weight: bold;
text-align: left;
text-decoration: none;
text-transform: none;
line-height: 12px;
background-color: #ffffff;
border-top: 0px solid #000000;
border-bottom: 0px solid #000000;
border-right: 0px solid #DCC194;
border-left: 10px solid #DCC194;
margin: 2px;
padding-left: 3px;
padding-bottom: 2px;
}
a.navi:hover {
display: block;
color: #DCC194;
font-family: tahoma;
font-size: 11px;
font-weight: bold;
text-align: left;
text-decoration: none;
text-transform: none;
line-height: 12px;
background-color: #ffffff;
border-top: 0px solid #000000;
border-bottom: 0px solid #000000;
border-right: 0px solid #FFD898;
border-left: 10px solid #FFD898;
margin: 2px;
padding-left: 3px;
padding-bottom: 2px;
}
</style>
</head>
<body>
<a class="navi" href="http://test1.example.com">Bla</a>
<a class="navi" href="http://test2.example.com">Bla</a>
<a class="navi" href="http://test3.example.com">Bla</a>
<a class="navi" href="http://test4.example.com">Bla</a>
</body>
</html>
Jonathan