Hallo Maik und alle anderen,
ich habe mir nun ein neues CSS-LIstenmenü erstellt:
http://www.kessler-creativdesign.de/neu/frischemarkt_baur_copy.html
Jetzt würde ich gerne haben, dass wenn man auf einen anderen Menüpunkt geht, also z.B. Industrie, sich das aktive Menü Food wieder zusammenklappt.
Hier der Code:
Danke für Deine Hilfe.
Andrea
ich habe mir nun ein neues CSS-LIstenmenü erstellt:
http://www.kessler-creativdesign.de/neu/frischemarkt_baur_copy.html
Jetzt würde ich gerne haben, dass wenn man auf einen anderen Menüpunkt geht, also z.B. Industrie, sich das aktive Menü Food wieder zusammenklappt.
Hier der Code:
HTML:
/* CSS Document */
ol { /* reset to get a base */
list-style: none;
padding: 0;
margin: 0;
width: 200px;
}
li a {
color: #557390;
text-decoration: none;
}
li ol {
display: none;
}
li:hover ol {
display: block;
}
li.active ol {
display: block;
}
.projekt_aktiv {
color: #990000
}
#link {
color: #003366;
text-decoration: none;
font-weight: bold;
}
#linkover {
color: #990000;
font-weight: bold;
text-decoration: none;
}
#link_inaktiv {
color: #5a6975;
text-decoration: none;
font-weight: bold;
}
#link_inaktivover {
color: #990000;
font-weight: bold;
text-decoration: none;
}
Danke für Deine Hilfe.
Andrea