MyBB Community Forums

Full Version: How to get rounded corners and shadow, std theme?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I have MyBB 1.6.10 and I use the default theme.

I would love to get the shadow and rounded corners like on this forum.

I have tried to copy some css from this site without success (I am not very good at css).

Can anyone help me? See my attachment if you dont understand what it is I want Smile

Thank you!

Jens
[attachment=29520]
I have seen it, and it does not change the specific corners I want to change.

What it looks like today:
[attachment=29524]

How I want it to look:
[attachment=29523]
^ well, you have to take the code in referred thread as the example code and apply wherever you want rounded corners.

add border-radius and other radius related codes for #container in the global.css
#container {
border-radius:4px;
box-shadow: 0 0 4px #000;
}
Thanks a lot! Works like a charm!