hoverschaltflächen, css und ärger mit firefox: IE und Firefox

Beitrag lesen

SELF-Forum

IE und Firefox

hoverschaltflächen, css und ärger mit firefox

Hi!
Bin gerade dabei meine alten Hoverbuttons von den Frontpage JS dingern in CSS Buttons umzuwandeln. Im Prinzip ein Link mit einem bild dahinter was sich entsprechend ändert. Funktioniert 1A mit dem IE, aber FP zeigt partout die Bilder nicht an.

Die CSS:
a.rollover:link
 {
  display:block;
  width:103;
  height: 23;
  background:url("../graphics/fp_btn0.jpg") no-repeat ...;
  text-decoration:none;
  font-family:Helvetica;
  font-size:11px;
  line-height:1.8em;
  color:#C0C0C0;
 }
a.rollover:visited
 {
  display:block;
  width:103;
  height: 23;
  background:url("../graphics/fp_btn0.jpg") no-repeat ...;
  text-decoration:none;
  font-family:Helvetica;
  font-size:11px;
  line-height:1.8em;
  color:#C0C0C0;
 }

a.rollover:hover
 {
  display:block;
  width:103;
  height: 23;
  background:url("../graphics/fp_btn1.jpg") no-repeat ...;
  text-decoration:none;
  font-family:Helvetica;
  font-size:11px;
  line-height:1.8em;
  color:#DDDDDD;
 }

a.rollover:active
 {
  display:block;
  width:103;
  height: 23;
  background:url("../graphics/fp_btn1.jpg") no-repeat ...;
  text-decoration:none;
  font-family:Helvetica;
  font-size:11px;
  line-height:1.8em;
  color:#DDDDDD;
 }

dann braucht man nur noch den link in der html datei, mit klassenangabe:

<a href="../main.html" class="rollover" target="_top">b&nbspe&nbspt&nbspr&nbspe&nbspt&nbspe&nbspn</a>

Funktioniert im IE, Firefox motzt.

Wie isses eigentlich mit den formatierungen für z.B. Umlaute (&uuml für ü,...). Das rafft Firefox ebenfalls nicht, macht auch der IE ohne zu mosern. Verwendet man das überhaupt noch?!

Freue mich auf Antworten.