MyBB Community Forums

Full Version: Help again ERROR message
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
when i log in and get an error message saying like you entered the incorect password well i cant seee the message

how can i change the text color?
Any screenshot of which thing you are talking about ?
[Image: Untitled.png]
see you cant see the text well
Open global.css and find;
div.error {
	padding: 5px 10px;
	border-top: 2px solid #FFD324;
	border-bottom: 2px solid #FFD324;
	background: #FFF6BF;
	font-size: 12px;
}
and Add the color attribute to it like this;
div.error {
	padding: 5px 10px;
	border-top: 2px solid #FFD324;
	border-bottom: 2px solid #FFD324;
	background: #FFF6BF;
color: #000000;
	font-size: 12px;
}
cheers
I have this issue too!

It doesn't do anything mate.

Tried this:

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

And the result is attached here in the photo:
Add this to your global.css stylesheet:
div.error li {
	color: black;
}
You mean adding this?

It should be like this?

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

div.error li {
    color: black;
}

div.error p {
	margin: 0;
	color: #000;
	font-weight: normal;
}

Cause it doesn't work that method.

Thanks!