MyBB Community Forums

Full Version: pm message bar & space used bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
what css needs to be altered to change the color of the username and private message subject in the PM notification bar

I've changed the color of the text in the message by altering this
.pm_alert {
	background: #FFF6BF;
        color: #000000;
	border: 1px solid #FFD324;
	text-align: center;
	padding: 5px 20px;
	font-size: 11px;
}

but it doesn't change the color of the username and PM subject.

also...what css needs to be altered to change the font color within the PM space usage bar?
The username is a link so you'd need:

.pm_alert a {
    CSS here
}
Add a new class to global.css

.pm_alert a:link {
    color: #000000;
    font-size: 11px;
}
Is it possible to remove the PM Space Used bar? One of our users wants to have it removed. Can they do this from their User CP or do I need to change it in the templates of the Admin CP? If have to change it to remove the bar, what do you suggest?
It has to be done through templates, a user cannot do it from the user cp.
If you remove it from the template it removes it for all users maybe you could request a plugin to do it on a per user basis. the space bar is only visible if you limit the number of pms a group can store.
So if I happen to remove the number of pm's a group can store, it won't show up?
Yes, if there's no limit, it can't show a progress bar on how much space is left.
Gotcha. Thanks so much!