Skip to main content
Topic: category header CSS (Read 2092 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

category header CSS

Hm, when I change the category header in index_light.css to:

Code: [Select]
.category_header a:link , a:visited {
color: #464646;
font-style: italic;
}

...some of other links are also #464646 instead of #769EA6, for example visited links in "who's online" or in the board index ("latest post... from..."). Why?

My general links are set to:

Code: [Select]
/* Normal, standard links. */
a, a:link, a:visited
/* Links that open in a new window. */
a.new_win:link, a.new_win:visited {
color: #769EA6;
text-decoration: none;
}

If tried to change this to:

Code: [Select]
/* Normal, standard links. */
a, a:link, a:visited
color: #769EA6;
text-decoration: none;
}
/* Links that open in a new window. */
a.new_win:link, a.new_win:visited {
color: #769EA6;
text-decoration: none;
}

...no way. Category headers are #769EA6 then too.  :o

Re: category header CSS

Reply #1

Code: [Select]
.category_header a:link , a:visited {
The part after the comma addresses any link. ;)

Try using:
Code: [Select]
.category_header a:link , .category_header a:visited {
Bugs creator.
Features destroyer.
Template killer.

Re: category header CSS

Reply #2

You were right! Thanks! :-[

 

Re: category header CSS

Reply #3

;D
Bugs creator.
Features destroyer.
Template killer.