d0om
Neues Mitglied
Ich habe folgendes Problem, welches mich schon länger quält:
Ich habe auf unserer Bandhomepage ( Link ), im oberen Header diesen Code "verbaut":
Fahre ich nun mit der Maus über einen Tabellenabschnitt, färbt sich dieser in die Farbe #787878.
Nun möchte ich aber, dass beim "onMouseover" sich der Tabellenabschnitt nicht in eine andere Farbe färbt, sondern dass ein Bild als Hintergrundbild erscheint.
Wie erreiche ich das?
Danke schon mal im Vorraus, denke für viele sollte dies kein Problem sein, für mich schon ;)
Ich habe auf unserer Bandhomepage ( Link ), im oberen Header diesen Code "verbaut":
Code:
<tr>
<a href="index.html"><td bgcolor="#E6E6E6" onMouseover="this.bgColor='#787878'" onMouseout="this.bgColor='#E6E6E6'" style="text-align: center; height: 35px; width: 120px;"><a href="index.html">Startseite</a></td></a>
<a href="band.html"><td bgcolor="#E6E6E6" onMouseover="this.bgColor='#787878'" onMouseout="this.bgColor='#E6E6E6'" style="text-align: center; height: 35px; width: 120px;"><a href="band.html">Band</a></td></a>
<a href="galerie.html"><td bgcolor="#E6E6E6" onMouseover="this.bgColor='#787878'" onMouseout="this.bgColor='#E6E6E6'" style="text-align: center; height: 35px; width: 120px;"><a href="galerie.html">Galerie</a></td></a>
<a href="videos.html"><td bgcolor="#E6E6E6" onMouseover="this.bgColor='#787878'" onMouseout="this.bgColor='#E6E6E6'" style="text-align: center; height: 35px; width: 120px;"><a href="videos.html">Videos</a></td></a>
<a href="termine.html"><td bgcolor="#E6E6E6" onMouseover="this.bgColor='#787878'" onMouseout="this.bgColor='#E6E6E6'" style="text-align: center; height: 35px; width: 120px;"><a href="termine.html">Termine</a></td></a>
<td style="background-color: rgb(120, 120, 120); text-align: center; height: 35px; width: 120px;"></td>
</tr>
<tr>
<a href="medien.html"><td bgcolor="#E6E6E6" onMouseover="this.bgColor='#787878'" onMouseout="this.bgColor='#E6E6E6'" style="width: 120px; height: 35px;" align="center" valign="middle"><a href="medien.html">Medien</a></td></a>
<a href="blog.html"><td bgcolor="#E6E6E6" onMouseover="this.bgColor='#787878'" onMouseout="this.bgColor='#E6E6E6'" style="width: 120px; height: 35px;" align="center" valign="middle"><a href="blog.html">Blog</a></td></a>
<a href="gb.php"><td bgcolor="#E6E6E6" onMouseover="this.bgColor='#787878'" onMouseout="this.bgColor='#E6E6E6'" style="width: 120px; height: 35px;" align="center" valign="middle"><a href="gb.php">Gästebuch</a></td></a>
<a href="kontakt.html"><td bgcolor="#E6E6E6" onMouseover="this.bgColor='#787878'" onMouseout="this.bgColor='#E6E6E6'" style="width: 120px; height: 35px;" align="center" valign="middle"><a href="kontakt.html">Kontakt</a></td></a>
<a href="login.html"><td bgcolor="#E6E6E6" onMouseover="this.bgColor='#787878'" onMouseout="this.bgColor='#E6E6E6'" style="width: 120px; height: 35px;" align="center" valign="middle"><a href="login.html">Login</a></td></a>
<td style="background-color: rgb(120, 120, 120); text-align: center; height: 35px; width: 120px;"></td>
</tr>
Fahre ich nun mit der Maus über einen Tabellenabschnitt, färbt sich dieser in die Farbe #787878.
Nun möchte ich aber, dass beim "onMouseover" sich der Tabellenabschnitt nicht in eine andere Farbe färbt, sondern dass ein Bild als Hintergrundbild erscheint.
Wie erreiche ich das?
Danke schon mal im Vorraus, denke für viele sollte dies kein Problem sein, für mich schon ;)