MyBB Community Forums

Full Version: Rounded Edges.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am currently making one of my first themes I am wondering how I can make rounded edges. I want them basically on everything. If you don't understand what I mean I will be more than happy to take a screenshot and circle what I mean. Thanks
You can use the CSS3 property border-radius to round anything you want.

Let's say you wanted a 10-pixel rounded edge on all corners of the container. It would look like this is global.css
#container {
	[other CSS code]
	border-radius: 10px;
}

Here's a guide to using border-radius if you want to know more: http://www.css3.info/preview/rounded-border/
(2011-08-17, 01:20 AM)Ferron Wrote: [ -> ]You can use the CSS3 property border-radius to round anything you want.

Let's say you wanted a 10-pixel rounded edge on all corners of the container. It would look like this is global.css
#container {
	[other CSS code]
	border-radius: 10px;
}

Here's a guide to using border-radius if you want to know more: http://www.css3.info/preview/rounded-border/

Thank you, I am pretty sure I can figure it out now that I have this. I appreciate it. Smile
(2011-08-17, 01:24 AM)Philly Wrote: [ -> ]Thank you, I am pretty sure I can figure it out now that I have this. I appreciate it. Smile

You're welcome Smile
Yup, I got it and it worked great. Smile Thanks again.