Quote Originally Posted by Design75 View Post
In Simply kerrin the border effect is indeed made with images. I think it can be achieved with css3 (but not 100% sure about that). Images are "safer", because not all olderversion browsers understand css3
Most browsers now do support border radius. The exception among most used is, of course, Microsoft and IE8, (it's supported in IE9). But, there are ways to make it work even in IE8.

Here's an example I did at one of my sandbox installs. It's a mockup of a friend's existing site and was something I did just to see if I could make it work:

http://www.oozix.com/store2

I created an additional id in the style sheet that looks like this:

#MainPageText {
border: 2px solid #000000;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
-moz-box-shadow: 5px 5px 5px #888;
-webkit-box-shadow: 5px 5px 5px #888;
box-shadow: 5px 5px 5px #888;
width: 705px;
background: white;
padding: 15px;
position: relative;
behavior: url(../store/includes/PIE.htc);
}

PIE.htc is a little script that can be downloaded.