Hallo, ich habe folgendes Problem:
Ich habe ein Menü, und der aktive Link soll fett angezeigt werden. Aber nur der oberste Link wird fett angezeigt, die folgenden bleiben normal. was mache ich falsch?
Ein Auszug aus der CSS:
Ich hoffe man kann mir helfen....
Gruß
Stephan
Ich habe ein Menü, und der aktive Link soll fett angezeigt werden. Aber nur der oberste Link wird fett angezeigt, die folgenden bleiben normal. was mache ich falsch?
Ein Auszug aus der CSS:
CSS:
#leftmenu a,
#rightmenu a {
color: #777777; text-decoration: none;
}
#leftmenu a:hover,
#rightmenu a:hover {
color: #c72031; text-decoration: none;
}
#leftmenu ul,
#rightmenu ul {
padding-left: 0px;
list-style-type: none;
margin-left: 0px;
margin-top: 12px;
margin-bottom: -10px;
}
#leftmenu current a,
#rightmenu current a {
font-weight: bold;
}
#leftmenu ul li,
#rightmenu ul li {
padding-top: 2px;
padding-bottom: 2px;
list-style-type: none;
}
#leftmenu ul li ul,
#rightmenu ul li ul {
margin-top: 0px;
margin-bottom: 0px;
}
#leftmenu ul li ul li,
#rightmenu ul li ul li {
border: 0px;
padding-bottom: 2px;
list-style-type: none;
font-size: 0.98em;
line-height: 1.5em;
padding-left: 8px;
}
#leftmenu ul.menu li.current a,
#rightmenu ul.menu li.current a {
font-weight:bold;
}
#leftmenu ul.menu li.current ul li a,
#rightmenu ul.menu li.current ul li a {
font-weight:bold;
}
Ich hoffe man kann mir helfen....
Gruß
Stephan
Zuletzt bearbeitet von einem Moderator: