I'm stuck on this one too.
I can adjust .Tab properties in skin1.css and it works, but the link properties inherit from the A:link at the top of the .css file.
Here is my code:
top_menu.tpl
Here is my skin1.css
Quote:
.Tab {
FONT-WEIGHT: normal;
TEXT-TRANSFORM: none;
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #666666;
font-size: 12px;
}
.Tab:link {
COLOR: #FFD44C;
TEXT-DECORATION: none;
}
.Tab:visited {
COLOR: #FFD44C;
TEXT-DECORATION: none;
}
.Tab:hover {
COLOR: Aqua;
TEXT-DECORATION: underline;
}
.Tab:active {
COLOR: #FFD44C;
TEXT-DECORATION: none;
}
|
Any help is appreciated.