MyBB Community Forums

Full Version: Change the colour of user posted links in a thread automatically?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I am having a problem where links are automatically set to white (the same colour as the background of the site).
Example: https://kraken-gaming.000webhostapp.com/...hp?tid=131
Any help would be appreciated.
you can add below at the bottom of global.css of the theme
.post_content a:link {color: blue;}

note: edit the stylesheet in forum admin panel (through themes section) AND in advanced edit mode (tab)

remember hard refreshing your browser [eg. press CTRL + F5] on a topic page after saving changes to the stylesheet
Thank you good sir this has fixed my problem.

I have have found that when you view the links they then turn white again
you can also add below at the bottom of global.css
 .post_content a:visited {color: brown;}
My thanks.