If you do inspect element on your webrings, it says its onionring2.css setting text to black on links.
onionring2.css:
a {
color: black;
text-decoration: none;
}
So you have a few options:
- You can change the onionring2.css file
- You can add CSS after the onionring2.css to overload the a tag styling.
- In your pages main CSS you can add "!important" after the colour value on a tags
In general its a good idea to get into the habit of using inspect element on CSS issues, it usually gives you the answer. And when it comes to webrings, the issue is always onionring
