ElkArte Community

Title: Visited category titles
Post by: Jorin on February 25, 2015, 11:30:51 am
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:-)
Title: Re: Visited category titles
Post by: emanuele on February 25, 2015, 12:38:09 pm
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:
Code: [Select]
.forum_category .category_header a:visited {
    color: the color.
}
Title: Re: Visited category titles
Post by: Jorin on March 06, 2015, 10:56:47 am
Seems to work without problems. Thanks!
Title: Re: Visited category titles
Post by: emanuele on March 06, 2015, 11:03:43 am
YAY! :D
Title: Re: Visited category titles
Post by: Jorin on March 24, 2015, 04:14:33 am
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:-)
Title: Re: Visited category titles
Post by: emanuele on March 24, 2015, 06:12:32 am
Maybe change it everywhere?
Code: [Select]
a:visited {
    color: the color.
}
Title: Re: Visited category titles
Post by: Jorin on March 24, 2015, 06:14:40 am
Isn't this for links in messages and posts also?
Title: Re: Visited category titles
Post by: emanuele on March 24, 2015, 06:37:34 am
Try removing .forum_category then:
Code: [Select]
.category_header a:visited {
    color: the color.
}
this would apply to most (if not all) of the "titles".
Title: Re: Visited category titles
Post by: Jorin on March 24, 2015, 06:41:52 am
Thanks, I will try.  :)
Title: Re: Visited category titles
Post by: inter on April 08, 2015, 05:39:02 am
Same problem. Fixed.