Jump to content
Sign in to follow this  
dionjwilliams

Rounded Corners On Website

Recommended Posts

hyest

Hi Dion, I don't have the same theme as you but try this (it will work with firefox, safari, chrome and IE9 (won't work with any older versions of IE)). Put this code in your "custom code" section:

	.canvas #page-canvas {
	 -moz-border-radius-topleft:15px;
	-moz-border-radius-topright:15px;
	-webkit-border-top-left-radius: 15px;
	-webkit-border-top-right-radius: 15px;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	}
	

Let me know if that works for you!

Share this post


Link to post
Share on other sites
hyest

Oh yeah, if that works for you, it was just set to do the top corners. So you could just duplicate that exact code and change out everything that says "top" and change it to "bottom" so that it rounds the bottom corners as well (just duplicate the code inside the parenthesis

Share this post


Link to post
Share on other sites
Kate

Thanks for the input, Christopher.

Share this post


Link to post
Share on other sites
orilus

No Luck getting this CSS to work for my website, and would love rounded corners with maybe a drop-shadow on the fixed width box. http://austinhomeshop.com/ Any recommendations?

Share this post


Link to post
Share on other sites
catrina

There is rounded corner CSS you can try here: http://jonraasch.com/blog/css-rounded-corners-in-all-browsers As for box shadow, the CSS is outlined here: http://www.css3.info/preview/box-shadow/


Please read the docs before posting. Please do not private message me unless I ask you to.

Designer | Catrina Dulay

Founder | Catrina and Mouse

Share this post


Link to post
Share on other sites
dionjwilliams

I've tried everything on this page and NOTHING is working... could there be something small that I"m missing?

Share this post


Link to post
Share on other sites
kastelic

The code posted by hyest should work, can you post all your custom CSS here? Maybe there's a typo somewhere in there?

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×