MyBB Community Forums

Full Version: Changing cetain area CSS text color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am having trouble editing a certain areas text color. I made the background blank but, some of the text is black in the footer, and it cant be seen!

The link to my forum is http://webhosted.info./community

Its a new install of V1.6

Here is a screenshot of what I'm talking about
[Image: bottom.gif]

Can someone please tell me where to edit these tex colors? I've been all through the CSS code and I just can't find it and I think I'm just making things worse!!Huh
Go to http://yourdomain.com/admin/index.php?mo....css&tid=9

Replace yourdomain with your own domain and find;

.body{
...
}

and change the color of background.
I dont want to chage the color of the backhground, I want ti to be black. I just want the text at the bettom to shw up too since its also black. So I need to knwo how to change that bottom text to white.
In global.css find:
.forum_legend, .forum_legend dt, .forum_legend dd {
	margin: 0;
	padding: 0;
}

Replace with:
.forum_legend, .forum_legend dt, .forum_legend dd {
	margin: 0;
	padding: 0;
	color: #fff;
}

Find:
#copyright {
	font: 11px Verdana, Arial, Sans-Serif;
	margin: 0;
	padding: 10px 0 0 0;
}

Replace with:
#copyright {
	font: 11px Verdana, Arial, Sans-Serif;
	margin: 0;
	padding: 10px 0 0 0;
	color: #fff;
}