MyBB Community Forums

Full Version: Changing colour of PM notification text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i change the colour of the text that i encircled in this image?

[Image: l0A6A.png]
Hi, this is the color of your links.
  1. Go to your admin cp
  2. Templates and styles
  3. styles
  4. Select your theme
  5. open global.css
  6. find a:link, a:hover, a:active, a:visited and change the color:#FFF; to color:#000;

This WILL change also the color of the links of your mybb website what I advice is to add this to your global.css

.pm_alert a:link, .pm_alert a:active, .pm_alert a:visited  {
color:#000;
font-weight:bold;
}

.pm_alert a:hover {
color:#000;
font-weight:bold;
text-decoration:underline;
}


I hope I helped, if you have questions, please ask.
Thanks!