CSS class cannot unbold a link.
Weird, links within div class tags (class small) with this css:
.small {
color: Silver;
font-weight: normal;
font-size: 11px;
}
.small a {
color: Blue;
font-weight: normal;
}
Are still bold. Because the wrapper div has all links bold. I thought this should override it? It overrides the color fine.... why not the 'normal' font weight?
|