MyBB Community Forums

Full Version: Round corners ..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How can I make round corners ?
[Image: 1.jpg]
Can't see the image in your post. Could you add the image as an attachment instead?
(2009-06-23, 05:09 PM)manhst Wrote: [ -> ]How can I make round corners ?

There are a large number of different options for round corners, many involve using 4 images for the rounded effect.
The easiest way (no images needed) doesn't currently work in any version of IE.

.curved {
       -moz-border-radius:10px;
       -webkit-border-radius:10px;
       -khtml-border-radius: 10px;
}
Where I add that ?
Add that in your global css.
-khtml-border-radius: 10px;
What is this one for? I only have:
-moz-border-radius:10px;
-webkit-border-radius:10px;

Toungue
Where in global.css ? body ,container,etc ?
Go to global.css, and select Advanced Mode. Then add the code seeker provided in the bottom.
No wait.. that won't make anything rounded. Try adding the code in #container.
faviouz is correct, under #contrainer
(2009-06-24, 06:12 PM)faviouz Wrote: [ -> ]-khtml-border-radius: 10px;
What is this one for? I only have:
-moz-border-radius:10px;
-webkit-border-radius:10px;

Toungue

I just need a moment to remember...

.........

.....

...

.

WebKit is a KHTML fork done by Apple some years ago...

so...

Webkit = Used by Safari (and now also Google Chrome)
khtml = Used by Konqueror browser which is popular on Unix desktops.
Pages: 1 2