MyBB Community Forums

Full Version: error in emil not showing up?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi guys

ok heres the problem when an error message pops up in email:
[attachment=24090]

& in this pic (same error window) ive highlighted what its meant to show:
[attachment=24091]

i know its the font color because its black on a black background, but where do i change it in css? because other error windows such as this one ive setup fine, i thought they all use the same css?:
[attachment=24092]
Search your CSS for the class "error", you'll find what you want.
these are only error classes i have in css:

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

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

div.error p em {
	font-style: normal;
	font-weight: bold;
	padding-left: 24px;
	display: block;
	color: #ff0000;
	background: url(images/error.gif) no-repeat 0;
}

sorted, i just made another called .error Smile

thanks dude \o/
Did you adjust those color hexes?
just added this & works good now:

.error {
background: #000000;
padding: 5px 10px;
border-top: 2px solid #ffffff;
border-bottom: 2px solid #ffffff;
color: #ffffff

}
I suppose that would work. Glad to see it's sorted out.
thanks for your help though Smile