I'm trying to change the link colors in soem sections of the site without changing others, and having no luck.
I've already tried changing the css to:
body {
[...]
color:#FFFFFF;
}
a:link, a:visited {
color:#FFFFFF; text-decoration:none;
}
a:hover {
color:#ef4d15;
}
[... further down the page ...]
#content a:link, a:visited {
color:#000000;
text-decoration:none;
}
to confine the link color change to that content section, however, when I do, the change applies across the entire site.
This should be easy--any idea what I'm doing wrongly?