MyBB Community Forums

Full Version: Trying to fix mybb copyright...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Just a simple question, the mybb copyright links are the same colour as other links on the forum, how do i just edit the mybb copyright text colour?
In the Extra CSS section for the theme you can add:

#copyright {
color: red;
}

#copyright a {
color: red;
}

It'll change the colours to red - so adjust appropriately.

Chris
thanks mate