Hallo, also ich habe ein Menü, das wenn ich z.B. auf At Work klicke sich die Farbe ändert und die Schrift (Fett). Das soll bei jedem Menüpunkt so sein.
Da ich nicht immer ein neues Menü machen möchte für die jeweilige Seite, wollte ich dann ne Abfrage machen! Ich Habe schon vieles Versucht aber nichts hat funktioniert!!
Hier der Code:
Man müsste dann da wo die Schrift definiert wird <span class="schrift_standard"> immer eine Abfrage rein machen, auch wo die farbe definiert wird. Wie könnte ich das machen? Könnte es mir einer anhand meines Beispiels zeigen?
Da ich nicht immer ein neues Menü machen möchte für die jeweilige Seite, wollte ich dann ne Abfrage machen! Ich Habe schon vieles Versucht aber nichts hat funktioniert!!
Hier der Code:
Code:
<html> <head> <link rel="stylesheet" type="text/css" href="css/schrift_fett.css"> <link rel="stylesheet" type="text/css" href="css/schrift_standard.css"> <link href="css/link.css" rel="stylesheet" media="screen"> </head> <body leftmargin="0" marginheight="0" marginwidth="0" topmargin="0"> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td rowspan="3" width="15"> </td> <td colspan="17" bgcolor="#000000" height="1"> </td> <td bgcolor="#000000"> </td> </tr> <tr> <td bgcolor="#000000" width="1"> </td> <td height="20" bgcolor="#FF9900"> <span class="schrift_fett"> Aktuelles </span> </td> <td bgcolor="#000000" width="1"> </td> <td height="20" bgcolor="#cccccc"> <a href="seiten/atwork/index.php"> At Work </a> </td> <td bgcolor="#000000" width="1"> </td> <td height="20" bgcolor="#cccccc"> <span class="schrift_standard"> <a href="seiten/service/index.php"> Service </a> </span> </td> <td bgcolor="#000000" width="1"> </td> <td height="20" bgcolor="#cccccc"> <span class="schrift_standard"> <a href="../../seiten/downloads/index.php"> Webworkerkurse </a></span> </td> <td bgcolor="#000000" width="1"> </td> <td height="20" bgcolor="#cccccc"> <span class="schrift_standard"> Forum </span> </td> <td bgcolor="#000000" width="1"> </td> <td height="20" bgcolor="#cccccc"> <span class="schrift_standard"> <a href="seiten/downloads/index.php"> Downloads </a></span> </td> <td bgcolor="#000000" width="1"> </td> <td height="20" bgcolor="#cccccc"> <span class="schrift_standard"> <a href="seiten/links/index.php"> Links </a></span> </td> <td bgcolor="#000000" width="1"> </td> <td height="20" bgcolor="#cccccc"> <span class="schrift_standard"> <a href="seiten/intern/index.php"> Intern </a></span> </td> <td bgcolor="#000000" width="1"> </td> <td height="20" bgcolor="#cccccc"> <span class="schrift_standard"> <a href="seiten/impressum/index.php"> Impressum </a></span> </td> <td bgcolor="#000000" width="1"> </td> </tr> <tr> <td colspan="17" bgcolor="#000000" height="1"> </td> <td bgcolor="#000000"> </td> </tr> </table> </body> </html>
Kommentar