MyBB Community Forums

Full Version: Change "You have message" colour
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello! 

I would like to know, how I could change the background colour of the "You have new private message from" alert.

[Image: KW9WdIA.png]
For the default theme

Themes » Default » and edit global.css in advanced mode.

Change background property of .pm_alert
Not working Sad
What do you want to change, the background color or the text color?
(2015-08-20, 12:54 PM)ArneVD Wrote: [ -> ]What do you want to change, the background color or the text color?

background colour
Change background ( color #fff6bf), border (color #ff6324) and perhaps you can add color to change the text color:


.pm_alert {
    background: #fff6bf none repeat scroll 0 0;
    border: 1px solid #ffd324;
    font-size: 11px;
    margin-bottom: 15px;
    padding: 5px 20px;
    text-align: center;
}
(2015-08-20, 01:40 PM)Ad Bakker Wrote: [ -> ]Change background ( color #fff6bf), border (color #ff6324) and perhaps you can add color to change the text color:


.pm_alert {
    background: #fff6bf none repeat scroll 0 0;
    border: 1px solid #ffd324;
    font-size: 11px;
    margin-bottom: 15px;
    padding: 5px 20px;
    text-align: center;
}

Works!