hallo, ich habe folgendes problem:
auf einer seite habe ich in der navigation eine unternavigation. in dieser soll der link der gerade aktuellen seite fett dargestellt werden.
beispiel:
gibt es eine möglichkeit der formatierung per css?
momentan muss ich ja die formatierung auf jeder seite von hand ändern, was gerade bei änderungen in der navigation mehr als umständlich und nervig ist
(und so könnte ich die navigation dann einfach einaml anlegen und includen)
mein bisheriger versuch per css funzt leider nich:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11: |
a.nav:link { text-decoration:none; color:#e6ef21 }
a.nav:visited { text-decoration:none; color:#e6ef21 }
a.nav:active { text-decoration:none; color:#e6ef21 }
a.nav:hover { text-decoration:none; background-color: #fffff0; color:#336699 }
a.unternav:link { text-decoration:none; font-weight: 100; color:#336699 }
a.unternav:visited { text-decoration:none; font-weight: 100; color:#336699 }
a.unternav:active { text-decoration:none; font-weight: bold; color:#336699 }
a.unternav:hover { text-decoration:none; font-weight: 100; background-color: #fffff0; color:#336699 }
|
kann mir jemand einen tipp geben???