Log in

View Full Version : Links



Pannonian
06-16-2010, 11:35
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?

pevergreen
06-16-2010, 12:59
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.

Conqueror
06-19-2010, 15:08
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 (https://addons.mozilla.org/en-US/firefox/addon/2108/) add-on, or manually edit(create) the userContent.css file in defaults/profile/chrome/ under the Firefox's main folder.


@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.