MyBB Community Forums

Full Version: Theme modification
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I my theme i want small change.
i want rounded corners for the forum boxes. ihave rounded the area in the screen shot and want black or any other dark color border for the forum boxes. (Arrow marked)
Pls suggest me.
[Image: 82924874715453453010_thumb.jpg]

And I don't know how it changed, but the Board Statistics bottom was looking black, where as it must be in theme color.
[Image: 68245037888362218148_thumb.jpg]

Please tell me how to make changes.
ACP > Templates & Style > YOUR THEME > Global.css

Board Stats bottom is .tfoot.

For the top corners to be rounded it's the .thead. You'll need to add the following;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;

You also need to edit .tborder and add the same;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;