MyBB Community Forums

Full Version: Round Corner
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i make my forum round corner like this


[Image: attachment.php?aid=15945]
Depends on if you care about older versions of IE
Here is the easy answer:
#container {
...
...
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}
(2012-08-20, 07:52 AM)seeker Wrote: [ -> ]Depends on if you care about older versions of IE
Here is the easy answer:
#container {
...
...
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}

Actually mozilla now supports border-radius without prefix, so this will work as well:
#container {
...
...
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}
I already got this code is my css but still its not curve


my css code


#container {
background: #fff;
width: 80%;
color: #000000;
border: 0px solid #e4e4e4;
margin: auto auto;
padding: 20px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
border-radius: 6px;
}
Give us link to your board if possible because it should work. Smile

Also - what browser are you using?
im using mozilla firefox 14.0.1

i think the problem is in my browser its alredy been take effect in my chrome
(2012-08-20, 10:40 PM)lordcedrich Wrote: [ -> ]im using mozilla firefox 14.0.1

i think the problem is in my browser its alredy been take effect in my chrome
There may be some errors, have you w3c validated?

And it may be Firefox... I know IE has a problem with cool CSS effects too. Undecided