MyBB Community Forums

Full Version: Copyright text color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I recently changed the background color of my forums, and now the text for the copyright isn't visible. Is there anyway to change the color of the text?
Admin CP > Themes > Modify / Delete > [your theme] then click go for "Edit Theme style"

Then find the Table Footers box and you can change the text and link CSS Attributes (Colour) from there
The settings in there are already all set to #ffffff, but the text still is not visible.
Then try AdminCP -> Template -> (Your Template - Exand) footer

Find:
{$lang->powered_by} <a href="http://www.mybboard.net" target="_blank">MyBB</a> {$mybbversion}<br />
				{$lang->copyright} &copy; 2002-{$copy_year} <strong><a href="http://www.mybboard.net" target="_blank">MyBB Group</a></strong>

and replace with:
<font color="red">{$lang->powered_by} <a href="http://www.mybboard.net" target="_blank">MyBB</a> {$mybbversion}<br />
				{$lang->copyright} &copy; 2002-{$copy_year} <strong><a href="http://www.mybboard.net" target="_blank">MyBB Group</a></strong></font>

You can change red with other colours.
mybbromania Wrote:Then try AdminCP -> Template -> (Your Template - Exand) footer

Find:
{$lang->powered_by} <a href="http://www.mybboard.net" target="_blank">MyBB</a> {$mybbversion}<br />
				{$lang->copyright} &copy; 2002-{$copy_year} <strong><a href="http://www.mybboard.net" target="_blank">MyBB Group</a></strong>

and replace with:
<font color="red">{$lang->powered_by} <a href="http://www.mybboard.net" target="_blank">MyBB</a> {$mybbversion}<br />
				{$lang->copyright} &copy; 2002-{$copy_year} <strong><a href="http://www.mybboard.net" target="_blank">MyBB Group</a></strong></font>

You can change red with other colours.

That worked thanks for your reply Big Grin