I had to change the ".small" from a class to a div id, and the a to the more specific a:link for it to work. Like this (and ofcourse change the "div class=" to "div id=" in the html tags around the links i wanted to change):
#small {
color: Silver;
font-weight: normal;
font-size: 11px;
}
#small a:link {
color: Blue;
font-weight: normal;
}
dont know why a class doesnt work but hey, this works too.
|