@sullrich:
In terms of colors, well, tell us how to fix.
Well, let's see what we can do about that:
It all comes down to editing some CSS code for the Wiki. If you have access to the Mediawiki-dir, look for a file called "main.css".
There, you will find several definitions for "a" tags. We are looking for the one in section /* general styles */. It should read:
a {
text-decoration: none;
color: #000000;
...
Uncommenting the line containgingtext-decoration: noneshould bring back underlined links. If you like, you can also changecolor: #000000;into something more creative than plain black. Maybe```
color: #7D0101;
Hope that helps a bit,
OJay.