For Firefox users, here's a quick fix. I't not pretty, but it at least makes links easy to spot and read. You'll either need to use the Stylish add-on, or manually edit(create) the userContent.css file in defaults/profile/chrome/ under the Firefox's main folder.
Code:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("totalwar.org") {
  a {
    color: #E25822 !important;
    text-decoration: underline !important;
  }
  a:hover {
    color: red !important;
    text-decoration: underline overline !important;
  }
}
To install this using Stylish:
1. Right-click on the Stylish icon on the status bar --> 'Write new style' --> 'Blank style...'
2. Give it any name you wish, copy & paste the above code into the text field, and save.