MyBB Community Forums

Full Version: Footer Text Color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Don't want to remove copyright. Just change color. I know about the links but the rest of the footer's text that's not a link. Like the words Powered By, etc. Where do I change the color. When I edit theme in ACP it never changes color. Must be doing something wrong.

Thansk,
TDH
To change the copyright text color there should be a CSS code in your Additional CSS box at the bottom of the theme manager.

Should look something like this:
#copyright {
	font: 11px Verdana, Arial, Sans-Serif;
	margin: 0;
	padding: 10px 0 0 0;
}

All you would need to do is add something like:
#copyright {
	font: 11px Verdana, Arial, Sans-Serif;
	margin: 0;
color: #ffffff;
	padding: 10px 0 0 0;
}
Change the "color" attribute to whatever you want.. Smile