I don't know whether it's skin-specific or a general setting, but links aren't very visible now unless one actually mouseovers. Can you change the colour, use underline, or whatever, to make them more distinctive?
Printable View
I don't know whether it's skin-specific or a general setting, but links aren't very visible now unless one actually mouseovers. Can you change the colour, use underline, or whatever, to make them more distinctive?
Its been brought up in the new skin thread, but I don't think anything has been announced to say what will be done. The introduction of the new skin has changed a few in the others, so once that is resolved, should be back to normal.
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.
To install this using Stylish: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;
}
}
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.