Hyperlink color

Need support or have a suggestion on how to improve the site? Post it here.
Post Reply
User avatar
vinsanity
Chili dog truther
Posts: 8772
Joined: July 3 06, 2:19 pm
Location: Indianapolis

Hyperlink color

Post by vinsanity »

Really minor thing but is it possible to change the hyper link color to stand out more? I think the current blue blends in too much with the blue backgrounds. Something different may stick out a bit more?

User avatar
TheoSqua
Next Gen Wart
Posts: 8894
Joined: April 22 06, 6:53 pm
Location: St. Louis
Contact:

Re: Hyperlink color

Post by TheoSqua »

I'm sure it's technically possible. We'd have to find the 1 line out of 5,000 css lines that does it, change the color, and tack on an !important.

User avatar
New Pagodi
Perennial All-Star
Posts: 4225
Joined: April 18 06, 11:30 pm
Location: St. Louis
Contact:

Re: Hyperlink color

Post by New Pagodi »

It would appear that the operative css selector is is a:link which is injected into style.css from line 3027 of style.php. However that will change all links including the post header which is probably not what you want to do. What might be better is to just set the postlink class with something like:

Code: Select all

a.postlink { color: #<whatever>; }
but I don't know if you can change classes like that. The surrounding code only sets pseudo-classes, so that may not work.

User avatar
TheoSqua
Next Gen Wart
Posts: 8894
Joined: April 22 06, 6:53 pm
Location: St. Louis
Contact:

Re: Hyperlink color

Post by TheoSqua »

The only person who has access to that code is Kyle.

Post Reply