Jump to content

Home

Darkening links in posts?


Recommended Posts

Why must you do that?

 

 

EDIT:

.....

 

That was rather rude, don't you think? He offered you help, I suggest you take it with open arms, because noone else has replied to this thread. As for the link, at least check it out, because i looked at it and I actually managed to calibrate mine to a good standard

Link to comment
Share on other sites

  • 11 months later...

if you do not like calibrating monitors, there is an option to write a very easy javascript, that will change the links' colours for this particular website (unless you're using Opera, where such a script would change colours for links on all websites, I think).

 

just save this text here:

 

// @name             Highlight Links
// @description      Highlights links

(function() {
var root = typeof unsafeWindow != 'undefined' ? unsafeWindow : window;
if (root.location.href.indexOf('lucasforums.com') == -1) { return false; }
var links = document.getElementsByTagName('a');
for (var i = 0; i < links.length; i++) {
if (links[i].href != '') { links[i].style.[color="Red"]color = '#bb0000'[/color]; }
}
})();

 

as highlightLinks.user.js

 

then search google for how to install scripts on your browser. it should work.

if not, simply post what's wrong in this thread.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...