Problem bei Menüanpassung

Status
Nicht offen für weitere Antworten.

Jan-Frederik Stieler

Monsterator
Moderator
Hallo,
ich habe mir mal das Tutorial für ein Popup Menü auf http://www.htmldog.com/articles/suckerfish/dropdowns/ angesehen und mir das hier zusammengebaut:

Code:
#nav  { /* all lists */
	font-family: verdana, helvetica, arial, sans-serif;
         font-color:#000000;
	font-size: 9pt;
         text-decoration:none;
       	text-align:center;
	background:#ffffff;
	border-bottom:2px solid #cccccc;
	position: absolute;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 20px;
         z-index:2;
}

#nav ul{	padding: 0px;
	margin: 0px;
	list-style: none;
	line-height: 20px;
         }

#nav a { font-color:#000000;
         text-decoration:none;
	display: block;
	width: 150px;
}


#nav li { /* all list items */
	float: left;
	width: 0px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #ffffff;
	border:2px solid #cccccc;
         border-top;2px solid #ffffff;
	width: 150px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -20px 0px 0 150px;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
         left: auto;
}

Mein Problem ist nun das ich es irgendwie nicht schaffe den normalen Text den man in den Menüs sieht mit Hover, Active etc. meinen Wünschen anzupassen. Das ganze reagiert immer nicht auf meine Angaben.
Könnte mir vielleicht jemand hier helfen?

Viele Grüße
 
huhu

Also den aktive, normalen und visited link kannst du ja im body tag deklarieren.

<body link="" vlink="" alink="">
allerdings werden dann alle Links auf deiner Seite so angezeigt.

den Hover mhhh

da schreibst du im CSS Teil einfach rein

#nav a:hover { color: deinefarbe;}
so müsste es gehen
 
Es gibt keine CSS-Eigenschaft mit der Bezeichnung font-color, wohl aber eine mit der Bezeichnung color.
 
Status
Nicht offen für weitere Antworten.
Zurück