Ralf: Menü

Beitrag lesen

Hi,

ich hab n css mit folgendem Inhalt:

a  { text-decoration: none; font-family: Verdana; font-size: 7pt color: #475B69; }
a:link  { text-decoration: none; font-family: Verdana; font-size: 7pt color: #475B69; }
a:visited { text-decoration: none; font-family: Verdana; font-size: 7pt color: #475B69; }
a:active { text-decoration: none; font-family: Verdana; font-size: 7pt color: #BAC9CD; }
a:hover  { text-decoration: underline; font-family: Verdana; font-size: 7pt color: #BAC9CD; }

#aboutmenu {position: absolute; top: 31; left: 250; z-index: 0;}
#about {position: absolute; top: -120; left: 250; z-index: 1;}

Nun hab ich ne HTML-Datei mit folgendem Inhalt:

<div id="aboutmenu">
<table cellpadding="0" cellspacing="0">
<tr><td align=middle><a href="javascript:do_about()">[Über uns]</a></td></tr>
</table>
</div>

<div id="about">
<table cellpadding="0" cellspacing="0">
<tr><td>Philosophie</td></tr>
<tr><td>Grundsätze</td></tr>
<tr><td>Anfahrt</td></tr>
<tr><td>Neuigkeiten</td></tr>
</table>
</div>

Im Header wird das CSS eingefügt. Allerdings wird die Einstellung für A nicht innerhalb des div genommen. woran liegt das?

Gruß

Ralf