Hallo Leute,
Ich habe ein Problem mit IE7. Ich habe in meiner css-Datei für meine Links gewünschte Sachen definiert. Die Links sollen klickbar sein und auf eine Seite verweisen. Ausserdem wenn man mit dem Cursor auf dem Link geht soll sich der cursor in Hand (hover-css)verwandeln. Alles funktioniert eindwandfrei bei Firefox. Nur in IE7 verwandelt sich der Cursor bei einem Link nicht in Hand. Hier der Code:
a {font-size: 1.0em;}
a:link {font-family: arial, verdana, sans-serif; color: #F87416; font-weight: normal; text-decoration: none;}
a:visited {color: #F87416; font-weight: normal; text-decoration: none;}
a:focus {color: #F87416; font-weight: normal; text-decoration: none;}
a:hover {text-decoration: underline; color: #dd4400; font-weight: normal; }
a:active {color: #F87416; font-weight: normal; text-decoration: none;}
Hier der Link-----------------------
<div class="test">
<a onclick="mojarra.jsfcljs(document.getElementById('list:akl'),{'list:j_idt105':'list:j_idt105'},'');return false" href="#">
<div class="btn-AZ-Liste-label">Diese Liste anzeigen </div>
<div class="btn-AZ-Liste"></div>
</a>
Und hier damit der Cursor als Hand angezeigt wird-------------
.test{
cursor: pointer;
text-align: right;
}
Wenn man jetzt in IE7 auf "Diese Liste anzeigen" geht, sieht man keine Hand. Kann Jemand mir bitte helfen?
Danke in Voraus
Laura