MyBB Community Forums

Full Version: Change error message background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,


I would like to change my Error Message background and font color, How can I achieve this ?

[Image: 56ee9465a33c82779ccce8981ecc3c2a.png]

Thank You
In your global.css you will find the code (something similar with this):

div.error {
    padding: 5px 10px;
    border-top: 2px solid #FFD324;
    border-bottom: 2px solid #FFD324;
    background: #FFF6BF;
    font-size: 12px;
}

Change the background parameter.
Thank You,.