Quote Originally Posted by logicalstep View Post
I see where you are coming from.

I have been tryign to use the web developers extension in Chrome and now firefox (chrome was acting funny)


Anyway I have an example which I'm sure will help shed light on my confusion.

This is probably down to my basic fundamental understanding of css.

Why when I want to change the categories visited links colour do I have to change:

a:visited {
color: #000000;
text-decoration: none;
}

instead of:

A.category-top, A.category-top:visited {
color: #000000;
text-decoration: none;


When on the Web Developer extension there is no mention of a:visited anywhere.

This is a prime example of where I'm loosing my way with this.

Help very much appreciated.

Logicalstep
This controls how ALL anchor tags on the site are displayed
a:visited {
color: #000000;
text-decoration: none;
}

if you want to change only the categories

A.category-top, A.category-top:visited {
color: #000000;
text-decoration: none;

It has to be formatted correctly

.category-top a, .category-top a:visited {
color: #000000;
text-decoration: none;

}