MyBB Community Forums

Full Version: How do we edit fieldset color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The fieldset is that border that wraps around option groups on the User CP> Edit Options page, but I'm sure you know this.

For the border color, what class is it inheriting or what needs to be done to change it?...

Thanks
Sorry bout that.. didn't realize this zone existed
Ok, figured it out...

You need to add a new property to the Global CSS

fieldset {
        border: 2px solid #3a3a3a;
}

Note: It doesn't require the . before fieldset.

Smile