MyBB Community Forums

Full Version: Changing text color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The bellow image shows that the text in the error box is invisible, how can I change it?

[Image: 1h2fzq2pr1.png]

1. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.

2. Find:

div.error {
	padding: 5px 10px;
	border-top: 2px solid #FFD324;
	border-bottom: 2px solid #FFD324;
	background: #FFF6BF;
	font-size: 12px;
}

3. Replace with:

div.error {
	padding: 5px 10px;
	border-top: 2px solid #FFD324;
	border-bottom: 2px solid #FFD324;
	background: #FFF6BF;
	font-size: 12px;
	color: #000;
}

4. Change #000 to the color you want (e.g. #ff0000 for red).
Thank you, it works.