MyBB Community Forums

Full Version: Wrong Password Message Text Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Heya. I'm trying to find out where to change the text color for the "wrong password" message. The background of it is yellow and the text is white making it near impossible to read.
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. Change to:

div.error {
	padding: 5px 10px;
	border-top: 2px solid #FFD324;
	border-bottom: 2px solid #FFD324;
	background: #FFF6BF;
	font-size: 12px;
	color: #000;
}
Thanks! Worked perfectly. Smile
How would you change the link color for the link: retrieve a new one?