Stefan: Text über Rollover- (Hoover-)schaltfläche??

Beitrag lesen

Hmm, mit CSS habe ich noch nichts gemacht... *schäm* Ich habe folgendes mal zusammengefrickelt, aber es klappt vorne und hinten nicht - logisch, bei meiner Ahnungslosigkeit ;) Was muss ich noch definieren?

<style type="text/css">
<!--

a.link:link
{
 color:#000000;
 text-decoration: none;
 height : 21;
 width : 120;
 background-image : 2003/images/buttons/Arches-2.gif;
 font-family : arial;
 font-size : 8;
}

a.link:hover
{
 color:#000000;
 text-decoration: none;
 height : 21;
 width : 120;
 background-image : 2003/images/buttons/Arches-1.gif;
 font-family : arial;
 font-size : 8;
}

-->
</style>
</head>

<body>

<table border="0" cellpadding="0" cellspacing="0">
  <tr>
    <a class="link" href="BayArea.htm" target="Hauptframe" alt="Arches" width=120 height=21 border=0>Arches</a>
  </tr>
</body>

Sers,

also wenn du das in den css Bereich in der Navi rein schreibst müsste
des so hinhauen!!
wichtig ist, das du in jeden <a href="bla bla"> folgendes
reinschreibst: class="link" sieht dann so aus:
<a class="link" href="bla bla">

a.link:link
{
 color:#farbederschrift;
 text-decoration: none;
 height : höhe in px;
 width : breite in px;
 background-image : url(bild was du haben willst);
 font-family : "schrift art";
 font-size : schrift größe in px;
}

a.link:hover
{
 color:#farbederschrift;
 text-decoration: none;
 height : höhe in px;
 width : breite in px;
 background-image : url(bild was du haben willst);
 font-family : "schrift art";
 font-size : schrift größe in px;
}

gruß basti