Page 1 of 1

Link colors

PostPosted: Fri Jun 26, 2009 7:17 pm
by Omigodtheykilledkenny
Is it possible visited links could be changed to light green instead of light blue? The strange neon effect on posts with a lot of links is a bit grating.

Re: Link colors

PostPosted: Sat Jun 27, 2009 8:00 am
by Glen-Rhodes
If you have Greasemonkey (and Firefox), you can create a user-script and use this code:
Code: Select all
// ==UserScript==
// @name           NS Forum Link-Visited Color
// @namespace      http://forum.nationstates.net/*
// @include        http://forum.nationstates.net/*
// ==/UserScript==
var style=".postlink:visited{color:#7CCD7C !important;}";
var head=document.getElementsByTagName("HEAD")[0];
var element=window.document.createElement('link');
element.rel='stylesheet';
element.type='text/css';
element.href='data:text/css;charset=utf-8,'+escape(style);
head.appendChild(element);

Re: Link colors

PostPosted: Sat Jun 27, 2009 8:53 am
by Omigodtheykilledkenny
Are you talking to me, or the admins?

Re: Link colors

PostPosted: Sat Jun 27, 2009 9:03 am
by Glen-Rhodes
You. :) Greasemonkey is a user-end script. It uses javascript to change the looks and functions on webpages, but only for those users who have it. The only downside is a little half-second delay between when the page loads, and when the changes are made.