MyBB Community Forums

Full Version: give round corner to default theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi need help how to give round corner to default theme and little bit dark background color
Try this.
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
(2010-07-31, 12:07 PM)darkly Wrote: [ -> ]
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;

Baring in mind this will only work for css3 supporting browsers, so not ie6 or ff2, aka older browsers. But the more people that start to use it the better it becomes because people have to upgrade.
(2010-07-31, 12:13 PM)Nathan Wrote: [ -> ]so not ie6 or ff2, aka older browsers.

It doesn't work in IE8 either.
IE9 supports it. :p
(2010-07-31, 12:16 PM)AJS Wrote: [ -> ]
(2010-07-31, 12:13 PM)Nathan Wrote: [ -> ]so not ie6 or ff2, aka older browsers.

It doesn't work in IE8 either.

Wow, forgot about that. Ie just sucks, it should be shot, spat on and then burnt, would do everybody a Favour!
thanks for your support
hi this theme is not compatible with latest version. my question is how i can do it in default theme
I want to give round corner only to white background as same in this community forum of mybb at bottom and background same as here
(2010-07-31, 12:07 PM)darkly Wrote: [ -> ]
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
that will only work for mozilla and webkit based web browsers.

 

-moz-border-radius: 4px;
-webkit-border-radius: 4px;
o-border-radius: 4px;
khtml-border-radius: 4px;
border-radius: 4;

The above code will make it work with any css3 web browsers.