roundedcornr - Problem

Associate
Joined
27 Jan 2005
Posts
830
Found a site http://www.roundedcornr.com/ that I'm sure others on here have seen that generates the code and images for various type of rounded images.

I used the rounded image with the border on and on the generated page it stated that it should not be stretched to more than 600 pixels. I've looked through the code and can't understand why it can't be more than 600 pixels.

So whilst coding, I tried to excede it, but the image just broke apart.

I'm wondering why this is happening and is there a work around?
 
I think I may just go back into Photoshop and actually cut the images rarther than jquery. Was just wondering why after 600 or so pixels the border/corner thing always broke up and couldn't be stretched further.
 
Why not use make a small corner image (usually a square) and use css? There are plenty of methods using css that scale well over all the major browsers.
 
Just ensure your users only use Firefox or Safari. Then:

Code:
<div style=" background-color: #ccc;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 1px solid #000;
padding: 10px;" >

Don't worry about all those IE users :D
 
Back
Top Bottom