Hallo.
Beschäftige mich momentan ein wenig mit Typo 3.
Momentan sieht mein Menü in Typo3 so aus:
HTML-Code:
LINKS = HMENU
LINKS {
special = directory
special.value = 2
entryLevel = 1
1 = TMENU
1.wrap= <ul>|</ul>
1.noBlur = 1
1.NO = 1
1.NO.ATagTitle.field = title
1.NO.linkWrap = <li>|</li>
1.ACT = 1
1.ACT < .NO
1.ACT.doNotLinkIt = 1
1.ACT.allWrap = <li>|</li>
Da habe ich jetzt keine IDS definiert, vielleicht ist das mein Fehler.
Ich wollte alles über das CSS und die Div IDS machen:
HTML-Code:
#menu ul
{
font-size: 80%;
color: #ffff55;
margin-left: 0;
padding-left: 10px;
list-style-type: none;
line-height: 165%;
}
#menu a {
color: #ffffff;
text-decoration: none;}
#menu a:hover {
color: #ffff00;
text-decoration: underline;}
#menu a:visited {
color: #ffffff ;
text-decoration: none;}
Mein Problem ist, er nimmt keinen Hover Befehl an.
Sollte ich vielleicht doch Klassen oder IDS im Typo3 Template dafür definieren?