MyBB Community Forums

Full Version: Change the PM notification text color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've found a thread re: how to change the background color, but nothing regarding changing only the pm notification text color.

Where do I go to change the color of the personal message notification text?

Will I need to add code somewhere or just modify the color code?


Thanks in advance.
Either it's in your CSS file or you've hard coded it through the templates.
for changing the background color, you might have seen editing / adding of below code in global.css
.pm_alert
{background:colorcode-in-hex;


AND for changing the text color you have to modify / add below for .pm_alert
color: color-code-in-hex;

example : you might have below code in global.css

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

changing background: #FFF6BF; in above code changes the background color
AND adding a line like color:#ff0000; changes the color of the text

Open global.css and find;
.pm_alert{
...
}

and Change its background property.