MyBB Community Forums

Full Version: Problem with message bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well when people receive a message it comes up as just a white box and the text is the same colour so you cant see it here is an example.

[Image: 1zfljky.png]

How do I stop this?
This is your .pm_alert class in global.css:

.pm_alert {
	background: #FFF6BF;
	border: 1px solid #FFD324;
	text-align: center;
	padding: 5px 20px;
	font-size: 11px;
}

Change to:

.pm_alert {
	color: #000000;
	background: #FFF6BF;
	border: 1px solid #FFD324;
	text-align: center;
	padding: 5px 20px;
	font-size: 11px;
}
(2010-02-21, 09:52 PM)MattRogowski Wrote: [ -> ]This is your .pm_alert class in global.css:

.pm_alert {
	background: #FFF6BF;
	border: 1px solid #FFD324;
	text-align: center;
	padding: 5px 20px;
	font-size: 11px;
}

Change to:

.pm_alert {
	color: #000000;
	background: #FFF6BF;
	border: 1px solid #FFD324;
	text-align: center;
	padding: 5px 20px;
	font-size: 11px;
}

That has worked although there is still a problem, well the text has changed black but not for the user and subject that is included?
Any one think of what is going on with it my members of my site are getting confused?
Try adding:
.pm_alert a, .pm_alert a:hover, .pm_alert a:visited{
    color: #000000;
    background: #FFF6BF;
    border: 1px solid #FFD324;
    text-align: center;
    padding: 5px 20px;
    font-size: 11px;
}
All posts in the top row is black did not resolve a problem, try this ..
.pm_alert {
    color: #000000;
    background: #FFF6BF;
    border: 1px solid #FFD324;
    text-align: center;
    padding: 5px 20px;
    font-size: 11px;
}

.pm_alert a, .pm_alert a:hover, .pm_alert a:visited {
    color: #000000;
}