Changing link colors (fixed).

Jan 05, 2008 21:58


I have been able to change the color of every other link on nightspoken to my satisfaction, but the link you click to add a new comment to an entry remains stubbornly blue. I also need to change the links on the reply form.

Here's a screenshot of the problem (just follow my hastily scribbled arrow).


Read more... )

comments:colors, comments, page:links:colors

Leave a comment

Comments 6

av8rmike January 6 2008, 15:13:05 UTC
Most of those link color specifiers, especially the ones in the comments can be replaced just with:
a {color: #c1c1c1;}

Reply

nightspoken January 6 2008, 23:54:25 UTC
Thanks. That helps with the code overall, but it doesn't seem to affect any of the links that are still blue in the "reply" form.

Ideally I'd also like to change the color of the "reply" form, to make the space where you type black and the font white, instead of the other way around.

(Oh, and I really like your icon.)

Reply

av8rmike January 7 2008, 03:44:17 UTC
You didn't put in the line as I gave it to you. That will change all the link colors, not just the individually specified ones.

For the input box, try:
.textbox {
background-color: #000000;
color: #ffffff;
}

Reply

nightspoken January 7 2008, 07:30:00 UTC
Okay, here's the part I altered:

.comment-links a {
color: #c1c1c1;
}

.asset-meta-comments a {
color: #c1c1c1;
}

.asset-meta-no-comments a {
color: #c1c1c1;
}

.commenter-name a {
color: #ffffff;
font-weight: bold;
}

.quickreply a {
color: #c1c1c1;
}

.textbox {
background-color: #000000;
color: #c1c1c1;
}

.textbox a (
color: #c1c1c1;
)

It worked excellently on the textbox, but the blue links are still blue.

Reply


Leave a comment

Up