okay habs mir grade selbst beantwortet ^^
Aber vielleicht hilfts ja jmd. anderes!!!!
im CSS Code war was falsch anstatt:
ul#Navigation {margin: 0.1; padding: 0.1em; text-align: center;border: 0.1px solid black; background-color:black; left:50%; margin-left:-10%; }
ul#Navigation li {list-style: none; display: inline; padding: 0.1; }
ul#Navigation a, ul#Navigation span {padding: 0em 0em; text-decoration: none; font-weight: bold; border: 0px solid black; border-left-color: black; border-top-color: black; color: black; background-color:black; }
* html ul#Navigation a, * html ul#Navigation span {width: 0.1em; /* nur fuer IE 5.0x erforderlich */
w/idth: auto; /* sicherheitshalber fuer IE 6 zurueckgesetzt */}
ul#Navigation a:hover, ul#Navigation span {border-color: black; border-left-color: black; border-top-color: black; color: black; background-color: black; left:auto; }
sollte man in Spalte:
ul#Navigation a, ul#Navigation span {padding: 0em 0em; text-decoration: none; font-weight: bold; border: 0px solid black; border-left-color: black; border-top-color: black; color: black; background-color:black; }
bei padding: 0em 0em
die "0em 0em" durch "0.1em 5%" ersetzen.
dass ganze sieht dann so aus:
ul#Navigation {margin: 0.1; padding: 0.1em; text-align: center;border: 0.1px solid black; background-color:black; left:50%; margin-left:-10%; }
ul#Navigation li {list-style: none; display: inline; padding: 0.1; }
ul#Navigation a, ul#Navigation span {padding: 0.1em 5%; text-decoration: none; font-weight: bold; border: 0px solid black; border-left-color: black; border-top-color: black; color: black; background-color:black; }
* html ul#Navigation a, * html ul#Navigation span {width: 0.1em; /* nur fuer IE 5.0x erforderlich */
w/idth: auto; /* sicherheitshalber fuer IE 6 zurueckgesetzt */}
ul#Navigation a:hover, ul#Navigation span {border-color: black; border-left-color: black; border-top-color: black; color: black; background-color: black; left:auto; }
^^ Hoffe das hilft vllt dem ein oder anderen....
Grüße Adrian