MyBB Community Forums

Full Version: Change background colour of error message
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
MyBB 1.8.22 default theme.

Occasionally there is a error box that pops up top right with a red background and black type. It's impossible to read how do I go about change the colour?

Thanks
find style properties like below in global.css stylesheet of the theme
.jGrowl .jGrowl-notification.jgrowl_error {
    background: red;
    border: 1px solid red;
    color: #333;
}
you can change background & color properties as required
[html color codes]

note: edit the stylesheet in forum admin panel (through themes section) AND in advanced edit mode (tab)
You're awesome! Thanks!