I searched and searched...
When I click on a category title, the color of the title changes. But I want it to be still the same. Does anyone know the css file and css string for this? O:-)
It's probably the a:visited selector at the beginning of the index.css or index_{variant}.css file.
Pay attention that changing the value there will change the colors everywhere.
You may want to add something like:
.forum_category .category_header a:visited {
color: the color.
}
Seems to work without problems. Thanks!
YAY! :D
Is it easy to expand this "fix" to the memberlist? Visited pages (if klicked on the letters on the right) are marked also... Don't want that. O:-)
Maybe change it everywhere?
a:visited {
color: the color.
}
Isn't this for links in messages and posts also?
Try removing .forum_category then:
.category_header a:visited {
color: the color.
}
this would apply to most (if not all) of the "titles".
Thanks, I will try. :)
Same problem. Fixed.