MyBB Community Forums

Full Version: MyBB copyright too light...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all,

I have the forum www.coolestech.com, and I'm not really able to see the MyBB text in the footer due to the gray background. What do I have to do to change the text to say black?

Thanks.
Under edit themes, scroll to the bottom where "Additional CSS" is (very bottom).

Theres a part that says
#copyright {
	font: x-small Verdana, Arial, Sans-Serif;
	margin: 0;
	padding: 10px 0 0 0;
}

Trying adding color: black; to that
#copyright {
	font: x-small Verdana, Arial, Sans-Serif;
	margin: 0;
	padding: 10px 0 0 0;
color: black;
}
Just edit the footer template where the Copyright is...

Use <font color="#000000">, that's the easiest way.
Ryan Ashbrook Wrote:Just edit the footer template where the Copyright is...

Use <font color="#000000">, that's the easiest way.
Font tags? Eeek! Use MaliciousKitty's code if possible.
If I were you, I'd remove the "1.1.5" from the footer template as well...it is not needed for the copyright, and it tells Hackers which version you are using...
Quote:Just edit the footer template where the Copyright is...

Use <font color="#000000">, that's the easiest way.

I prefer to use <span style="color: #000;"> </span> ... What maliciouskitty posted should work perfectly.