Hi ich hab ein problem,
ich möchte in meinem menü in einer situation 2 verschiedene farben haben
das war die css datei
das der html code dazu jetzt sollten die mittleren 4 links genau in der umgekehrten farbe erscheinen
kann mir dazu jemand nen tipp geben?
danke schonmal im vorraus
ich möchte in meinem menü in einer situation 2 verschiedene farben haben
HTML:
#header {
width:750px;
height:341px;
margin-left:25px;
background-image:url(images/banner.jpg);
display:block;
}
#nav {
width:744px;
height:22px;
margin: 2px 0px 2px 25px;
background-color:#4169E1;
padding: 3px 5px 3px 1px;
}
#nav ul {
}
#nav li {
display:inline;
background-color:#245882;
width:120px;
height:22px;
float:left;
margin-left:4px;
text-align:center;
}
#nav a {
width:120px;
height:19px;
padding-top:3px;
text-decoration:none;
color:#4169E1;
font-weight:800;
display:block;
}
#nav a:hover {
color:#FFFF00;
font-weight:800;
}
das war die css datei
HTML:
<div id="header"></div>
<div id="nav">
<ul>
<li><a href="index.htm">Startseite</a></li>
<li><a href="chronik.htm">Chronik</a></li>
<li><a href="vorstandschaft.htm">Vorstandschaft</a></li>
<li><a href="jugend.htm">Jugend</a></li>
<li><a href="presse.htm">Presse</a></li>
<li><a href="impressum.htm">Impressum</a></li>
</ul>
</div>
das der html code dazu jetzt sollten die mittleren 4 links genau in der umgekehrten farbe erscheinen
kann mir dazu jemand nen tipp geben?
danke schonmal im vorraus