RE: CSS Stylesheet help
Well I don't know if a space is allowed like you do with "color : yellow;", try "color: yellow; " and do it that way for all tags... I don't really know how specific CSS is... Maybe you should make a space between "A:hover" and the { as well, and remove the ; in the end... So it becomes something like this:
A:link, A:visited, A:hover {
text-decoration: none;
color: yellow;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 11px;
font-weight: bold
}
|