Beautiful rounded corners for your HTML boxes

What is CurvyCorners?

A free JavaScript library for creating gorgeous rounded corners for HTML block elements i.e. DIVs. Supports anti-aliasing, borders and background images.

Why use CurvyCorners?

CurvyCorners is designed to fill a gap in modern browser support for rounded corners on block elements while we wait for CSS3 to be finalised and supported by all browsers.

Currently Firefox, Safari and Chrome have limited support for the proposed CSS3 border-radius selector.

Will CurvyCorners use native border-radius if available?

Yes! CurvyCorners only does its magic on browsers that don't have CSS3 border-radius support, namely IE and Opera.

Examples?

Every rounded box on this page uses CurvyCorners.
View more examples

Comments

We would love to hear your comments on CurvyCorners.

Please note this is not a support channel please vist our Google Support page if you need help with the script.

Some comments may be moderated.

 

Gravatar Thanks very much. It's usefull.
gdragon1112, vietnam
Sun 25th July 2010 21:23:36
Gravatar
,
Fri 23rd July 2010 03:30:45
Gravatar Great job,
But when checking the source code i found a piece of potential mistake:

curvyCnrSpec.prototype.get = function(prop)
...
retval += this[tb = 'u'];
return retval;
....

I guess this should be "retval += this[tb + 'u'];"
Qianqiu Yao, China
Tue 20th July 2010 09:50:32
Gravatar dsqfasdqf
teytr, yuettttttt
Fri 9th July 2010 15:13:09
Gravatar mainpage does not work in ie6.

here is a simple solution to draw corners or circles in ie6/7/8

function round(obj, color){
var height = obj.clientHeight,
width = obj.clientWidth;
for (var i=1; i<13; i++){
var div = document.createElement('div');
div.style.width = width;
div.style.height = height;
div.style.border = "solid 15px " + (color || obj.parentNode.style.backgroundColor);
obj.appendChild(div);
rotate(div, 7*i, 1);
}
}

function rotate(obj, angle, centered){
var rad = angle * Math.PI * 2 / 360,
cos = Math.cos(rad),
sin = Math.sin(rad),
height = obj.clientHeight,
width = obj.clientWidth;

obj.style.filter = obj.style['-ms-filter'] = 'progid:DXImageTransform.Microsoft.Matrix(sizingMethod="auto expand",M11='+cos+',M12='+(-sin)+',M21='+sin+',M22='+cos+')';
if (centered) {
if (obj.style.position != 'relative' && obj.style.position != 'fixed') obj.style.position = 'absolute';
obj.style.top += (height - obj.offsetHeight) / 2;
obj.style.left += (width - obj.offsetWidth) / 2;
}
}

round(document.getElementById('container'));
steppke,
Wed 7th July 2010 00:33:26
Gravatar Great plugin. It was breaking for me though on divs that had the position of fixed. Line 524 was changing all elements that where not positioned as absolute to relative. I changed it to include fixed:
if ((boxPosition != "absolute")&& (boxPosition!="fixed")) this.box.style.position = "relative";

Thanks,

James
James, Atlanta, Ga
Mon 5th July 2010 18:17:17
Gravatar Webpage error details


Message: curvyObject Error:
You cannot apply corners to INPUT elements.
tag: INPUT
id: txtUsername
class: Log-Input
Parent tag: FORM
Parent ID: frmLog
Line: 407
Char: 5
Code: 0
Anyone can fix this error please. Thanks

Crazycat, VietNam
Sat 3rd July 2010 07:43:52
Gravatar Webpage error details

Message: curvyObject Error:
You cannot apply corners to INPUT elements.
tag: INPUT
id: txtUsername
class: Log-Input
Parent tag: FORM
Parent ID: frmLog
Line: 407
Char: 5
Code: 0

Anyone help me fix this error, please :(.Thank U
Crazycat, VietNam
Sat 3rd July 2010 06:10:34
Gravatar Man, you really opened up a can of worms with all these comments... :-) I LOVE curvycorners. Any problems I've had have largely been due to my ignorance, not your code. THANKS for a REALLY COOL device... I use it everywhere, and it works in IE7/8, Safari PC/Mac, FireFox. THANKS
Von Bach, Earth
Thu 1st July 2010 14:00:19
Gravatar Your website is giving cury corner errors... fail.
WePwnYou, Indy
Wed 30th June 2010 17:10:11
Gravatar I used curvycorners and i have problem with background color. this element have overflow:hidden; and background color not seen at 100% height. this elements have dinamic height and i can´t set absolute height...
Spike, Europe
Fri 25th June 2010 23:44:10
Gravatar why curvy corners does not works in this vase

-moz-border-radius: 10px 10px 0px 0px;
-webkit-border-bottom-right-radius: 0px;
-webkit-border-bottom-left-radius: 0px;
border-radius: 10px 10px 0px 0px;
}
jitendra, india
Fri 25th June 2010 21:08:09
Gravatar Hi

I'm getting errors - even on your page when I try to run the script.
no object with ID #Adsense banner exists yet call curvy corners (settings, obj) when it is created
Jennie,
Wed 23rd June 2010 01:03:41
Gravatar Wonderful script!!!
It's the only one that work great on IE with an image as background under the rounded corner.
Really great job!!!!
Gigio, Italy
Tue 22nd June 2010 08:10:13
Gravatar <b>I need to remind people that this comments form is not to be used for support. No support requests will be answered. We have an active Google Group where you can ask help with CurvyCorners.</b>
Cameron, Brighton, UK
Sat 19th June 2010 10:54:55
Gravatar @Petyr, Have you tried using the Beta version. Opera support has been discussed many times on the Google Groups page. Also what's with the exclamation marks!?
Cameron, Brighton, UK
Sat 19th June 2010 10:52:57
Gravatar How to use curvy redraw. Steb-by-step.
ale321,
Fri 18th June 2010 19:04:45
Gravatar CurvyCorners doesn't work with Opera!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Petyr, Bulgaria
Fri 18th June 2010 16:19:59
Gravatar Hi there. Thanx for a gr8 script!!!!

I've run into an issue tho. I'm using MCV2 with client side validation enabled. So the validation summary message changes the height of the rounded container <div>, and the height doesn't change of the parent container as the validation message get's longer. It remains static. So it doesn't change from the initial height that it was @ the inital render. Any ideas here? Thanx so much :-) I hope I don't need to remove it from my projects because of this.
Yusree Allie, Cape Town - South Africa
Fri 18th June 2010 10:13:57
Gravatar this page (curvycorners.net) throws Object expected (prototype.js) in IE8 for me
adam2,
Tue 8th June 2010 01:52:04
Gravatar On the site I'm currently working on, most pages consist of divs for primary navigation, a banner, a footer and a main content area (comprised of a sub-navigation bar and two columns for content) with rounded corners. In most cases, the left-hand column is an image that fills the space (no padding or margins), so I simply code a background image for the column, with no repeat.

I have coded the rounded corners for Webkit and Mozilla using CSS3 and am using CurvyCorners for IE. However, in IE8, CurvyCorners is cutting off the bottom of the image, as far up as the top of the radius. I have yet to see any mention of this in any online forum.

Also, I have one page in which FOUR images occupy the left-hand columns, separated by text links. Instead of using background images, I coded the images and links normally in the HTML. In both IE7 and IE8, CurvyCorners is making the bottom image disappear; I can see it in every other browser, but not in IE. Any help you can offer will be greatly appreciated.
John Olore, Portland, Maine
Tue 1st June 2010 16:46:26
Gravatar if you get bunch error code when ID doesn't exist, just comment on code after :
if (j === null) inside the curvycorners.src.js
so you'll get this :
if (j === null)
//curvyCorners.alert("No object with ID " + arg + " exists yet.\nCall curvyCorners(settings, obj) when it is created.");
ikalangita,
Tue 1st June 2010 10:26:36
Gravatar thanks, it works perfectly on me :
- IE8
- IE7
- Safari 4
- Firefox 3
ikalangita,
Tue 1st June 2010 10:18:40
Gravatar I'm getting a bunch of errors for ids that don't exist. I work primarily in Drupal which uses regions that don't display if they don't contain content. On the pages that don't have content in regions that get rounded corners, I get js errors. Is there any way to make it not throw an error when it doesn't find an id or class on a page?
radeus, Denver, Colorado
Tue 25th May 2010 22:26:13
Gravatar Curvy corners working everywhere on all browsers except - creating a Search Input Field on IE7 / 8. Anyone else experience this?
Shellie Z, Portland, Oregon
Tue 25th May 2010 17:36:50
Gravatar Amazing script, works perfect using the old jquery sample as the one used jquery-1.2.6 working perfectly in IE 8, Firefox 3.5.9 but didn´t work in IE using jquery last release i didn´t discovered what happen ... but after trying many different things to check out what happened that in firefox works perfectly with the last jquery and why not in IE so i discovered this version mismatch. Im searching out comparing the jquery library to find what happen ... so if you guys have any idea .... thanks for the amazing script !!! seeya
Bernardo Gosaric, Brasil
Thu 20th May 2010 20:25:43
Gravatar After currently using multiple inner divs with a large background image to get rounded borders I decided to see if there was a better solution and I found your site. I was able to add your js, create my own css, and have exactly the result I was looking for using just one div and then set the class, the way it should be. Great job. After some more testing I'll be happy to donate for your great work. Keep it up.
Thanks, Eric
Eric Faust, Houston
Mon 17th May 2010 15:42:04
Gravatar When i use the curvycorners with iFrame
ia have a message with zero-width box ....
in the parent it work good
can you help me?
mami rejeb, Tunisia
Mon 17th May 2010 09:37:11
Gravatar @Gren Thanks!

Your solution for Mootools save me! =)
VictorArias, Colombia
Wed 12th May 2010 01:54:32
Gravatar @jehanon: remove the "," after "antiAlias: true" ;)
JR, Norway
Tue 11th May 2010 11:42:19
Gravatar
window.onload = function() {
var settings10 = {
tl: { radius: 10 },
tr: { radius: 10 },
bl: { radius: 10 },
br: { radius: 10 },
antiAlias: true,
}
curvyCorners(settings10, ".arrondi10");

doesnt not work at all
jehanon,
Fri 7th May 2010 07:06:24
Gravatar Gals and guys, this is it, the ultimate solution for rounded corners for IE 6, 7, 8... I tested multiple other solutions and each one of them lacked certain functionality. This one has it all (well, most crucial ones at least)... Very, very nice! Now, if we could only have similar IE solution for a box-shadow effect... in any case - bravo!
Eldar, Atlant
Thu 6th May 2010 20:56:56
Gravatar hi, I'm working on a DNN skin and I applied curvycorners to my navigation menu, it's a dnn Nav object so it's created dynamically, I also handled the hovering event by changing the "font-color" and the "background-color" of the link..

in IE only the "font-color" is changing, the background color remains the same, so is there any way to change the "background-color" in IE after hovering?

thanks in advance..
Ihab, Egypt
Tue 4th May 2010 13:08:06
Gravatar Great JavaScript - thanks.

Works a treat on fresh pages and across most browsers.

Can conflict with other javascript such as highslide and suckerfish jQuery if both are being applied to the same div/link. This may explain why some people are having troubles.
Chris, Australia
Sat 1st May 2010 08:58:05
Gravatar Nice script, thanks! But if you would, in your CSS, add a line with just border-radius (without the -moz- and -webkit-) it would work for us Opera users without having to use the script.
Eikern, Norway
Wed 28th April 2010 09:24:26
Gravatar @Anton i got mine working in mozilla -all versions, opera 9,64, IE 6 and lower and IE 8 though not IE7. i got a little bug in opera but i fixed it by replacing
var txt = document.styleSheets.item(sheetnumber).ownerNode.text;
with
var txt = document.styleSheets.item(t).ownerNode.text;
im currently working on displaying it on IE7 but i dont think that CurvyCorners is the problem (:
Sarah, brasil
Tue 27th April 2010 12:57:14
Gravatar Love it! Worked for me. Best Solution out there so far!
Shellie Z, Portland, Oregon, USA
Tue 27th April 2010 00:09:18
Gravatar Absolutely useless. In IE 7 and 8 it only produces JavaScript errors, in Safari or Firefox it is working but they don't need the curvycorners, because they render the CSS correct with roundings.
Anton,
Sun 25th April 2010 18:26:22
Gravatar Works Great!
Now my sites will look the same in all the major browsers
Thank You
Sam, Biloxi, MS
Wed 21st April 2010 21:51:05
Gravatar CurvyCorners doesnt work in the latest Opera?
Petyr, Bulgaria
Tue 20th April 2010 07:51:41
Gravatar This script is with GNU, so I wonder if a place in my web shop developed by me, I'll have to disbonivilizar it for free? I will not sell the store, so I will ussar to sell products from my company .. Hugs
Raots, brasil
Fri 16th April 2010 16:57:25
Gravatar Hi,

I am using the rounded corners script provided by you and It's working fine.

However when I am disabling and enabling a div the content is overlapping. This issue is happening with rounded corners script.

How can I overcome with this problem?

Could you please suggest a solution.
Krishna, India
Thu 15th April 2010 06:35:08
Gravatar We've just released version 2.1 BETA. It's got over 50 fixes and improvements. It also has support for Opera 10.5. Please report any issues to our Google Group.
Cameron, Brighton, UK
Thu 1st April 2010 11:56:17
Gravatar I'm going to look at fixing the browser detection and enable native border radius in Opera. These changes will first appear in the development version available at Google Code.
Cameron, Brighton, UK
Thu 1st April 2010 11:38:03
Gravatar Scanstyles popup is caused by faulty browser detection - javascript should search for "gecko", rather than firefox
>lol768<, Internet
Sat 27th March 2010 15:02:13
Gravatar I'm using Opera 10.51, which does support
leo, poland
Thu 25th March 2010 07:47:37
Gravatar My Tests.

V2.04,OS XP SP3(32bit).

In the IE6,I8.
When Too Many DIV in corners ,then cpu too high.
Sorry The One,my English so bad.
BFY, China BJ
Sat 20th March 2010 20:53:44
Gravatar n00b question:

I am using curvy corners in combination with the jQuery validation plugin, and I'm having problems getting the div to redraw the rounded corners when I do like this:

$("input[type='submit']").click(function(e) {
curvyCorners.redraw();
});

When I click the submit-button the first time the form validates, an error-message pops up and expands the div, causing the layout to go ugly. However when I click on it the second time the rounded corners redraw nicely.

Could it be that my validation plugin hijacks my initial click? How do I go about this?
timkl, Copenhagen
Sat 20th March 2010 20:08:35
Gravatar FWIW - I had the same issue with scanStyles() as someone did above. I am trying to run scanStyles on my page, after an AJAX load, which dynamically adds elements.

I believe I found a bug in the curvycorners.js file. line 312 or so.

encloser - is either an array or undefined. if it is undefined, all works. But getElementsByClass requires a single element, not an array of elements.

so my fix is to do what *i think* was what was supposed to happen, and say:

var encloser = curvyCorners.getElementsByClass(argbits[0]);

for (j = 0; j < encloser.length; ++j) {
boxCol = boxCol.concat(curvyCorners.getElementsByClass(argbits[1], encloser[j]));
}
Cary FitzHugh, Virginia
Thu 18th March 2010 20:23:59
Gravatar Hey,

Just wanted to say that the old CurvyCorners script works in Opera, but the version on this page does not. I'm using Opera 10.5, which does support the border-radius property, so it would be cool if the script were updated in order to use that.

In fact, it would be REALLY cool if the jQuery version of the script were updated.

Thanks! Have a great day
Joshua, Roseville, CA
Fri 12th March 2010 20:09:46
Gravatar Problem Solved:

The solution apparently, is easy
the wmode option should be set to "transparent" NOT "opaque"
Yannis Aggelakos, Greece
Mon 8th March 2010 18:03:21
Gravatar Update:
It seems that there is NO WAY possible to make curvycorners work with any flash embed method
(at least the ones I've tried, swfobject, Adobe old Foo.js embed, pure embedding-like copying and pasting embed data from youtube)
Or it is possible that I doing something wrong?
Yannis Aggelakos, Greece
Mon 8th March 2010 17:28:55
Gravatar It seems that using curvycorners js makes flash movies appear out fo focus and play back, only if you click on them!
This is the case for me in IE6 and IE7.
Every other borswer seems to work just fine
Yannis Aggelakos, Greece
Mon 8th March 2010 11:41:06
Gravatar I am using this and it works well. At first, it did not work with Opera, but I updated my Opera and then...it worked.
It is very exciting to be able to use such simple styles.
I was wondering how modern a browser it has to be? The latest versions of all? I only have the latest versions installed...So, does anyone know? And who is webKit supporting? where does it fit in?
meridith, mtn view, ca
Thu 4th March 2010 22:59:20
Gravatar the alert 'Scanstyle does nothing...' on your home page is a pain in the a**
mat,
Mon 1st March 2010 15:26:27
Gravatar @Michael White

This solution for line 557 is line 1255.

Replace: var tag = '*'; // prepare for no tag
to: var tag = 'div'; // prepare for no tag

Thanks
Paulo McNally, Nicaragua
Thu 25th February 2010 21:32:59
Gravatar Bug: The script fails with the error:

'1' is null or not an object

when you specify multiple corners in a single css statement.

For example, the below breaks curvycorners (at least in IE8):

-webkit-border-radius: 8px 8px 0 0;

If I use seperate statements:

-webkit-border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px;

this error does not occur.
Bobo, Utrecht, NL
Wed 24th February 2010 10:22:44
Gravatar Looks nice, but not very practical without an enormous amount of customization. Maybe I'm doing something wrong, I don't know, but I've worked with it for 3 days now and am giving up.
Try opening the CC page in IE 8, then switch to compatibility mode. The submit button stays rectangular. Hover functionality changes dramatically. Page fluidity is greatly affected in IE(x). Google ads disappear. I have ads on many of my pages and don't want to see my ads disappear.
I realize it's a massive undertaking for such a project, but from what I see, the cost outweighs the benefit yet.
To be fair, I've never seen any implementation of rounded corners that worked properly in all 3 versions of IE.
Yay, Google Chrome, eh? :D
Tom, US
Wed 24th February 2010 02:53:22
Gravatar Great script Cam, so easy to use!
Andy, Brighton
Fri 19th February 2010 10:20:20
Gravatar I use php, and I reuse the header in every page, then problem occur that it search for all curve object in every pages.

Sometime when I click to some pages, it does not found the curve object and show warning, how could I solve it?? thx!
leo, HK
Thu 18th February 2010 05:35:47
Gravatar hello thanks your script!
I made 4colors border,but right border color do not working by IE
#test{
margin: 0.5in auto;
color: #000;
width: 818px;
height:200px;
padding: 10px;
background-color: #FFCCFF;
border-top:3px solid #FF9933;
border-bottom:3px solid #339933;
border-left:3px solid #0066FF;
border-right:3px solid #54297e; <---right border color do not working in IE

-webkit-border-radius: 10px;
-moz-border-radius: 10px;
}

right border color do not working by IE
heno, japan
Wed 17th February 2010 06:43:21
Gravatar In IE8, changing the background color using the pseudo-class hover don't work in my rounded menu !
Also the cursor dont switch anymore, I had to add

#menu a:hover {
cursor: hand;
}

to my CSS

Alain Spineux, Belgium
Wed 17th February 2010 05:07:05
Gravatar Anyone know how to set and unset this.. make it so I can toggle it? Cheers -J
JeremyBass,
Fri 12th February 2010 00:36:06
Gravatar Hi i want to know how to create a rounded rectangle in css please give some guidens.

regards,
krishna
krishna, madurai
Mon 8th February 2010 11:46:42
Gravatar I just want to say thank you. This script is very universal. I am able to use this on everything, but my banner (because its not a background image and I'm not able to make it do what i want as a background. With the banner I can just use transparency though, so no big deal.

Thanks!
swk, USA
Sun 31st January 2010 05:44:44
Gravatar Is there a way to have two or more sets of differenct corners on one html page? I have the basic (manual code) working fine but I have one div that will use corners that is much bigger than the rest.

Thanks.
Eddie, Florida
Fri 29th January 2010 23:25:28
Gravatar For those having trouble with the new version of curvycorners in IE8 - all colour declarations must be made in hex. If you use the colour name (e.g. yellow) you will get black elemnets top and bottom.
Rooney, Bristol
Thu 21st January 2010 09:57:18
Gravatar Code:

<style>
.myBox{
filter:alpha(opacity=40);
width:300px;
margin-left:auto;
margin-right:auto;
}
.myBoxContent{
position:relative;
margin:10px;
background:#fff;
color:#000;
}
</style>
<script type="text/JavaScript">

addEvent(window, 'load', initCorners);

function initCorners() {
var settings = {
tl: { radius: 5 },
tr: { radius: 5 },
bl: { radius: 5 },
br: { radius: 5 },
antiAlias: true
}
curvyCorners(settings, ".myBox");
}

</script>
<div class="myBox">
<div claa="myBoxContent"> The Alpha Test !</div>
</div>

When the Div "Mybox" set the "alpha" in css, it will cover "Myboxcontent" for IE .

Awaiting for help.


Thank You!
Joke, China
Sun 10th January 2010 11:03:20
Gravatar I am trying to use this code in wordpress. But it does not works. Please help to do this.
hafij, Bangladesh
Sat 9th January 2010 05:00:15
Gravatar I cant get this to work in Opera and IE. Im doing it the new CSS way so it works in firefox, safari and chrome as its just using the native way to round corners. Im not sure which file to include from when i download it as there are many in the download and its not clear from the instruction page which file to include in your web document.

Basically im including this file:

<script type="text/javascript" src="js/curveycorners.src.js"></script>

and then in CSS i've done:

#container, #container #main-content { -moz-border-radius: 20px; -webkit-border-radius: 20px; }

So from what im led to believe that should also work in IE and Opera? But its not so a little help would be appreciated, thanks :)

Also is there any initialisation im supposed to do somewhere?

From the examples i see you're just including 1 file using the new CSS way yet it works on opera and IE but doesnt for me :/
Callum, Uk
Thu 7th January 2010 17:01:34
Gravatar Did you know that Opera 10.5 pre-alpha supports rounded corners?? Script should be updated ASAP. It doesn't work properly in Opera 10.5 pre-alpha at all. Even the demos. How is that possible?? You should simply use feature detection instead browser detection...
JohnD, Poland
Wed 6th January 2010 13:13:17
Gravatar error 557 "Unexpected call to method or property access"

might be caused if you set the border radius rule on an img element
sam, holland
Fri 25th December 2009 23:55:18
Gravatar RESUME
At. Post. Kodamendhi Date – 18/12/1989
Tahsil Mouda D... Nagpur
(Maharashtra)
NAME - GIRISH DILIP LIMJE

FA. NAME - DILIP LIMJE

DA. OF. BIRTH - 04/12/1989

CATEGARY - - OPEN

RELIGION - HINDU

NATIONALITY - INDIAN

MARIYAL ST. - UNMARRIED

LANG. KNOW - ENGLISH, HINDI,MARATHI

MOBILE NO. - +919021679418

PHONE NO. -+9107115684911

EDU. QULIFI. -
1. 10th Diploma
2. 12th Diploma
3. IT i ZEN PROGRAM (Software)(72%)
Ms Office 2000, HTML, Ms Access 2000, Visule Basic,
4. Certificate in typing with (30)wpm speed(83%)
5. B.C.A . I YEAR APPEAR

Experience:- I am working in as a computer instructor and computer operator since july 2009 to till Date- 01/01/2009

Declaration:- I hereby declare that the above details are correct and true to the best knowledge and belief.

Thanking you,

Place - Kodamendhi
Date - 18/12/1989
Your faithfully
G.D.LIMJE




Girish, Nagpur
Fri 18th December 2009 14:48:13
Gravatar Is there a way to use alpha transparency on the borders?
Jara, Brasil
Wed 16th December 2009 19:33:24
Gravatar This is beautiful, but runs incredibly slow on a reasonably averagely old pc - the curveyness only kicks in a full 10 seconds after pageload. WHich is too slow to be useable. This is looking at this site, not mine. Is there a speedier upgrade on the horizon? I'd kill, (or even pay) to make this usable. keep up the good work
Tim Gummer, Auckland, New Zealand
Sat 12th December 2009 05:15:37
Gravatar well it looks so horrible when i use it in 20px by 20px DIV
Saurav, Kathmandu
Fri 11th December 2009 12:38:10
Gravatar Hi!

I created a patch for CurvyCorners 2.0.5pre13 to add support for the "unequal non-zero top/bottom radii with background image".

Follow url and enjoy it!
HERE ->, http://sim6.heliohost.org/curvycorners-background-image-patch
Sun 6th December 2009 17:09:25
Gravatar You da (wo)man!!

Great script!
Elbobiam, UK
Sat 5th December 2009 00:17:53
Gravatar Very cool, this rocks. I'm having a problem with IE8 in trying to do a mouseover and changing the backgroundColor. It works great in Firefox and Google Chrome but not IE8. I'm using this.style.backGroundColor = "yellow"; or whatever color but it doesn't work in IE8. Anyone have any suggestions?

Awesome script!!!!
Scott L, Mobile, AL
Wed 2nd December 2009 04:26:31
Gravatar Great script! ...but doesn't work with IE8.
I see this page OK but mine square.
ginji, Tokyo, Japan
Wed 2nd December 2009 02:46:23
Gravatar This is a great script. Currently, I'm somewhat Java script-challenged, so I've been looking for a straightforward, understandable, versatile script, and this is it. I've used Stu Nicholls' CSS-based corners solution, and while fairly elegant, it is not easily modified. This script is very, very flexible. I'm sending some $ your way.
Dick, Washington State, USA
Tue 24th November 2009 01:47:10
Gravatar Sorry - after posting I saw the notice that support is on Google... I re-posted the information from below on Google so you can just delete my comments if you want.
Michael White, Georgia, USA
Mon 23rd November 2009 22:44:29
Gravatar I'm having a bit of a problem in IE7. Most of the elements on the page have curvy corners applied just fine but for some reason certain elements are throwing wobblies.

During debugging I found that the curvyCorners.scanStyles function defined on line 1289 is trying to get matches[1] of a null value in some cases.

I did a temporary hack to fix that bug and return false if it fails to get a valid match set.

After that I found that line 1270:

els = node.getElementsByTagName(tag);

was throwing an error, saying that the object did not support that method. I checked the values of "node" which usually ended up automatically set to document. When that was the case, everything worked fine. Sometimes "node" was an array passed in as an argument. This is when it failed. The only contents of the array was a single [object]. I tried just setting node = node[0]; and it now manages to get past that segment of code.

I still receive an error about line 557.

this.shell = this.box.appendChild(newMainContainer);

IE says "Error: Unexpected call to method or property access." at which point I decided that this could be a very long process of debugging and I might just end up making things worse since I don't know the code base and the ripple effects that my changes could have.

Please let me know if you have a chance to fix this issue.
Michael White, Georgia, USA
Mon 23rd November 2009 22:38:58
Gravatar Nice script, I like it but better use less load I hope
Pico RG, http://www.ecashbot.com
Mon 23rd November 2009 18:06:56
Gravatar Excellent wortk, thank you.
GrOoVe_SaLaD, Bordeaux (France)
Fri 20th November 2009 15:16:39
Gravatar Absolutely wicked script... thank you have sent donation just now.
Bob, England
Thu 19th November 2009 19:39:16
Gravatar Curvy corners did save the day!

I was working on a layout where the gradient background image was generated using a php script and it needs borders for the area. Finally using curvy corners, there is no need to use rounded corner images and the borders look really good.
George Kharmujai, Bangalore
Wed 18th November 2009 15:32:17
Gravatar Hi,

There something wrong with this new release version. I want to have a google text link ad in a rounded box (DIV) using the script, the google ad keep disappearing. same goes to your side here, your sidebar google ad is GONE after everything has load except the google banner on top.

Is there any conflict with google ad type? And also about a social bookmarking button from Onlywire.com.

still alright, nothing happen. BUT when look closely, you find that the button has 2 borders when it should only 1 border. This button also generated from javascript.

I still can't configure it out where's the conflict.

HELP!!!! Help me with the google ad 1st !!!!

Thanks.
Calvin, Singapore
Sat 14th November 2009 09:57:58
Gravatar Thank you! Thank you! Great script saved me so much frustration!!!! Sending you some money right away!!! Keep it up!

Thanks again,
Chris
Chris Fitton, Bend. OR
Thu 12th November 2009 19:06:55
Gravatar When i try to round an input in ie7 i get an error:
"Un expected call to method or property access : Curvycorners.js, line 1"


I simply added the round class:
.round{
border: 1px solid #344857;
/* Do rounding (native in Firefox and Safari) */
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
}

to my inputs.

All works well in firefox, safari etc. just bugging out in ie 7.
Mark Evans, California
Sun 8th November 2009 21:27:44
Gravatar Thanks for the work, this is a really great script!
Erwin, Holland
Thu 5th November 2009 12:04:48
Gravatar Actually I was wrong, the inset does work. I forgot to remove the old padding div. Once removed the inset shows.

Thanks again for the fantastic script.
Peter, Menlo Park, California
Tue 3rd November 2009 00:22:20
Gravatar hi,
does not work when I give CSS element hover effect.
that is, if rounded corners, but does not change the border color when is under the hover effect
thanks ...
jereny, venezuela
Mon 2nd November 2009 20:38:26
Gravatar CurvyCorners is awesome. One small issue I found.

Using it removes the shadow from, moz-box-shadow: inset.

Not that many people use an inset shadow since only Mozilla supports it, but it's something to note.
Peter, Menlo Park, CA
Mon 2nd November 2009 16:17:52
Gravatar Your project rocks - it just worked straight out of the box. Thanks a million man!
Jeremy, Newhaven, Edinburgh
Sun 1st November 2009 20:57:27
Gravatar I like how this works but the corners don't round till after the page loads. Can this work before page loading occurs?
K, CI
Tue 27th October 2009 23:13:57
Gravatar Love this script. Works like a charm. But...... not in IE8. I wonder why.
Jesse, Netherlands
Mon 26th October 2009 21:09:53
Gravatar Hi all,
I'm using curvy corners 2.0.3 revision but i'm getting only one div rounded. Do you know why that happens? i have to round all my divs on the page.

Thanks,
Michael
Michael, Romania
Sat 24th October 2009 18:29:01
Gravatar hello,

i have use curvery.source.js it works fine in mozila but there is problem in ie. there is not rounded corners in ie.
it makes problem.if any solution to use how it in ie then tell me.
kamini, ahmedabad
Sat 24th October 2009 08:22:08
Gravatar many many thanks for that great iframe fix.
now all is working fine
netfox, germany
Fri 9th October 2009 23:20:29
Gravatar Hi there,

I just created an Iframe fix for curvy corners.
In the curvycorners.src.js file add the following:
--------------------
var iframcount = document.getElementsByTagName('iframe');
for (var i = 0; i < iframcount.length; i++){
iframcount[i].src=iframcount[i].src;
}
----------------------
Just before the end of the "curvyCorners()" function
In version 2.0.4 row 340

I hope this will help some people.

Greats Bart
bart, Netherlands
Thu 8th October 2009 08:40:30
Gravatar CurvyCorners 2.0.4 is colliding with Mootools.

Here's a fix: rename function "addEvent" to "curvyAddEvent" in curvycorners.src.js and at the end change the "addEvent()" function call to "curvyAddEvent()".
Gren, Helsinki
Mon 5th October 2009 10:55:16
Gravatar Excellent job!
Indeed the best solution for nice round corners. The fact that the corners are transparent is great!!!
Regards!
Webby, Romania
Sun 4th October 2009 00:08:41
Gravatar The script is great, but I'm also having an issue with iframes in IE8. If I have an iframe inside of a curvycornered div, the iframe content disappears. It flashes for a split-second on the screen and then it's gone. This is only in IE8 and maybe 7, but all other standard browsers seem to work.
Martin, Canada
Sun 27th September 2009 05:48:29
Gravatar Anyone knows how IE 7 renders the rounded element with solid border that really ugly?
backdash,
Sat 26th September 2009 13:09:23
Gravatar sorry, after my glowing have to just say that 2.0.4 does not render corners in opera 9 or 10 ... :(
coder, uk
Tue 22nd September 2009 16:49:04
Gravatar I've been a fan of CurvyCorners for a while now but your new 2.0.4 really does kick the llama's ass!! it's beautiful! no javascript parameters, just 2 lines of css code that i'd be using anyway.

thank you for sharing ... way to go!!!
coder, uk
Tue 22nd September 2009 16:40:49
Gravatar Message
name, location
Mon 21st September 2009 08:07:47
Gravatar Fantastic script. Thankyou!! Just as I was beginning to think there was no easy way to rounded corners.
It is a bit out on the iphone though (as if all theses browsers to cater for wasnt enough!!)
Paul Peterson, Sydney Australia
Fri 18th September 2009 04:56:18
Gravatar I have been trying to use this all day. It worked for a while with IE7. But suddenly stopped. I re-downloaded just to see if maybe I messed it up....still doesn't work.

Suggestions?
Cameltoad, Seattle
Thu 17th September 2009 05:00:52
Gravatar This is good except one problem:

I've use ver 2.0.4 on a Wordpress site and but it doesn't work when using Opera.

Firefox, IE8, Safari and Chrome are fine so far.
Robin, Norfolk, UK
Wed 16th September 2009 18:18:17
Gravatar We will add this to Teambox.com thanks!!!
Florian Vallen,
Tue 15th September 2009 14:38:48
Gravatar eyelahvet!!!
Kenchi, Manille
Fri 11th September 2009 02:10:06
Gravatar Please help me!
When I use this script, IE show a popup confirmation activeX, have no way to make IE do not appear popup confirmation activeX?
shasha, VietNam
Wed 9th September 2009 17:38:50
Gravatar Excellent work!

I've spent weeks on code to generate corners (images) with and without borders - in any color, and can finally throw it all out the window if favor of your far more elegant solution.

Thanks!
Kjetil Larsen, Amsterdam
Wed 9th September 2009 14:38:35
Gravatar When I use this script, IE show a popup confirmation activeX, have no way to make IE do not appear popup confirmation activeX?
shasha, VietNam
Wed 9th September 2009 04:37:42
Gravatar Why not just quickly mention that top and bottom radius must be equal to each other if using a background image? I started getting error:
curbyObject warning:
Not supported: unequal non-zero top/bottom radii with background image
Nano, Houston, TX
Wed 9th September 2009 04:29:36
Gravatar its fine work;
but in ie8 my iframe included in my page disappears by integrating this package.
can u please give me instructions to solve this problem.
best regards
netfox, germany
Sun 6th September 2009 18:38:32
Gravatar Hi,

This package confilict with prototype framework and not work!
PATMAP, IRAN
Sun 6th September 2009 13:03:58
Gravatar @Pekka Taipale. This script displays perfectly for me in IE 8. This script has been tested to work in IE6, IE7 and IE8 so I'm not sure why it's not working for you.
Cameron, Brighton, UK
Thu 27th August 2009 20:03:36
Gravatar This library is a nice idea, but unfortunately the implementation seems to have broken for IE8. It works nicely for Opera 9.64, but since IE8 is a pretty major client (however broken it is), CurvyCorners seems unusable. Too bad, I spent quite some time debugging why my corners weren't curvy in my test site, until I realised I should look if it works even with the home site (this page). It doesn't.
Pekka Taipale, Espoo, Finland
Thu 27th August 2009 15:15:44
Gravatar good.give me step to make it.
divesh kumar, kanpur
Sat 22nd August 2009 09:11:59
Gravatar I"m pleased -- displays nicely in browsers checked so far. Huge timesaver and a much neater solution. Thank you!
Cathy Lessing, Johns Creek, Georgia
Fri 21st August 2009 03:21:26
Gravatar Saved me alot of time!!! thank dude!
Somwang, Laos
Thu 20th August 2009 12:05:30
Gravatar Really exceptional code. Thanks so much. Also, thanks for the very well written instructions. Even a designer like me could figure it out.
Derek Vogel, Reno, Nevada
Wed 19th August 2009 10:10:05
Gravatar Absolutely great, thanks!
Claudia, http://www.liquidskydesign.org
Tue 18th August 2009 13:01:10
Gravatar Wow... After a several hours of debugging some rounding javascript that the designer put together, I turned to Google to find me a proper library. Working perfectly (in less then ideal conditions) under IE (all necessary versions) and Firefox. Up and running in less time then took me to write this comment. Haven't been so impressed in a long time! Keep up the good work :)
Marko Popovic, Serbia
Tue 11th August 2009 10:33:30
Gravatar its wonderful.
otherwise one has to deal with large number of small images to make curvy corners.
thanx a lot...
Arvind,
Mon 10th August 2009 10:41:54
Gravatar That was definitly somethin' i was looking for and can't even imagine it could be done with JS and so simply
thanks again
maskware, Paris
Thu 6th August 2009 14:39:44
Gravatar Excellent script mate. I'm intermediate in web design and I must say you've made this script really simple to use. When I first looked at it I was like I doubt ill get it to work, but after following your simple instructions I found it a doddle and I like it very much, 10/10 defiantly the best rounded corner script out there by far.

Keep up the great work mate.
John
John T, Hull, East Yorkshire, UK
Wed 5th August 2009 11:15:27
Gravatar @Inon Use a class instead of an ID. For example each DIV could have the same class 'round.
Cameron, Brighton, UK
Wed 29th July 2009 18:45:42
Gravatar Hi,
Thank you for this useful script.
One thing i do not understand is how to give more the one div ID (more the one div with the same ID is not VALID XHTML)

any suggestions will be much appreciated.

Thanks.
Inon, Israel
Tue 28th July 2009 07:14:15
Gravatar @Syd Lawrence Wow thanks for your very kind comments!
Cameron, Brighton, UK
Mon 27th July 2009 18:31:18
Gravatar This is quite possibly the best rounded corners script ever! And the easiest to implement, just use the css3 attributes.

Wonderful! I am even going to donate!
Syd Lawrence, Winchester
Mon 27th July 2009 18:21:54
Gravatar it's veri nice web page,and i like it.
albertt, slovenija
Sun 26th July 2009 21:11:10
Gravatar @flippy Turning off error messages is well documented at the bottom of the instructions page.
Cameron, Brighton, UK
Sun 26th July 2009 19:11:17
Gravatar hi, whenever i view curvycorners in firefox 3.5 and google chrome, i see a dialog box message "Scanstyles does nothing in Webkit/Firefox".

i understand this is a debug message? but can anybody tell me how to disable it? it might be annoying to the users. tnx..
flippy,
Sat 25th July 2009 23:34:30
Gravatar @ell Thanks for pointing that out. It has now been fixed.
Cameron, Brighton, UK
Sat 25th July 2009 15:20:24
Gravatar in opera 10, the google ads is suppose to have curvycorner too, but it doesn't have currently.
ell,
Sat 25th July 2009 04:36:35
Gravatar Ok I figured out a solution!

jQuery.noConflict(); right before the adsense code, no prob!

lewie, wisconsin
Fri 24th July 2009 03:27:49
Gravatar Hey guys i have a small problem with the css generated by the script with Top and left values i want them to take 50%as value so i can get the main div displayed automatically in the center i will appreciate any help over this thank you
Aymen, Tunisia
Thu 23rd July 2009 11:38:57
Gravatar @Lewie Could you post your question on the Google Group, that way someone will probably answer it. When you post can you give more detail to the problem you are having and any example URL or screenshots displaying the problem.
Cameron, Brighton, UK
Wed 22nd July 2009 12:29:09
Gravatar This is a killer script!

But.... I'm having an issue with using curvycorners and google adsense with firefox.

Any clue about a work around?

ls3-solutions.com
Lewie, Wisconsin
Mon 20th July 2009 21:25:24
Gravatar Just wanted to say that this is a great script. I have spent countless hours trawling the web looking for something that is simple and works. This is it !

Well done, keep up the good work !
Steve Perkins, UK
Mon 20th July 2009 16:59:55
Gravatar I read very careful, all the instruccion and I find the solution, thank you for all.
Alan, Argentina
Mon 20th July 2009 01:35:25
Gravatar I have the last version. I don't understand the CSS invocation method, you can explain my?
Alan, Argentina
Mon 20th July 2009 01:15:46
Gravatar @Alan Please download the latest version 2.0.4. Then use the CSS invocation method to apply curvyCorners to your elements. Instructions are available on this site.
Cameron, Brighton, UK
Sun 19th July 2009 21:24:25
Gravatar Hi, I'm Alan from Argentina, and i love your script. I use it a lot, but I have a problem, I want to use the same function for many div's, like this:

var cB = {
tl: { radius: 0 },
tr: { radius: 0 },
bl: { radius: 10 },
br: { radius: 10 },
antiAlias: true
}
curvyCorners(cB,"#cBb3");

if I want to use to two div's I need to put like this:

curvyCorners(cB,"#cBb3");
curvyCorners(cB,"#cBb4");

I question you, I can do some thing like this, to use the same function for many div's?

curvyCorners(cB,"#cBb3","#cBb4");

I try using like that, but don't not working.

I hope that we find solutions.. Thank for all. And I praise your work, is so beautiful.

Sorry if my English is not good. Jajaja.

Alaan. E-mail: alaan.gg@gmail.com
Alan, Argentina
Sun 19th July 2009 21:10:23
Gravatar Please note this is not a support channel please vist our Google Support page if you need help with the script.
Cameron, Brighton, UK
Sat 18th July 2009 11:33:06
Gravatar Hello,

I was trying to implement curvycorners in my application and after a long struggle it started to work but only to see that none of the other form elements and Jquery is working.

The div to which I have applied curvycorners contains a form with jquery events to it. These are not working now. Upon researching, came to know that it is because of the adding of the data of the div to a newContainer's innerHTML where all the events and functionalities are cleared and only html is copied.This is not working in IE 6,7,8

Awaiting for help.


Thank You,
Venkat
Venkat, India
Fri 17th July 2009 07:17:14
Gravatar is it possible make two box, and if it is how?
Roby, Italy
Thu 16th July 2009 11:53:43
Gravatar Hello, The latest Opera gets this error when i tried your nice js.

Event thread: click
Error:
name: Error
message: curvyCorners Error:
curvyCorners.adjust() has nothing to adjust.
stacktrace: n/a; see 'opera:config#UserPrefs|Exceptions Have Stacktrace'
Designer, Cyperweb
Thu 16th July 2009 08:47:11
Gravatar It does not work on internet explorer 8... Like at all... There is no right side menu bar and the whole thing is pretty messed up-- it does work on ie7 though, but not in ie8 compatibility mode
erik,
Thu 16th July 2009 02:46:05
Gravatar Is there any performance hit if I create 10 boxes at one go? I'm using Drupal, and I was thinking of using the CurvyCorners (CC) solution for the blocks, and within contents as well. I'm not sure how the CC code generates the boxes, so i'm clueless about the performance. Does anyone know?
Also, I saw another JS-based solution somewhere. I will look through my history. But firstly, I have to make sure if I'm able to share what I had found, since this page belongs to CurvyCorners. Am I able to share here?
Janice Ann, United States
Sat 4th July 2009 08:52:05
Gravatar alerts like "zero-width box with no accountable parent"
wasting my time

damn idea bringing curvy errors in ie directly to users
André, switzerland
Fri 3rd July 2009 10:26:13
Gravatar alert "zero-width box with no accountable parent" etc
wasting my time

damn idea bringing curvyalerts directly to users in IE
André, switzerland
Fri 3rd July 2009 10:23:54
Gravatar how we can make curvy border. is there any easy way with clirity.
Reema Tiwari, hyderabad india
Thu 2nd July 2009 13:36:28
Gravatar Great script!! is there a way to make it run faster when loading the page?
ekly, Cameroon
Tue 30th June 2009 16:25:31
Gravatar Nice work! Thank you very much.
Passers, China
Mon 29th June 2009 00:06:43
Gravatar It has got some limitations.

- On RTL (right to left) pages (i.e. Arabic) the pages are rendered incorrectly.
- The hover style seems to work when the page first load, then as you nagivate thru the site it degrades to a point that you have to move the mouse on the edge of the text (but not outside) in order to click it.

Other than that is it an excellent product that produces stunning visual results.

I was able to fix those two problems above by using JQuery Curvy Corners (just google it), download those specific .js files in that page and everything works.

Thanks guys, for this excellent work.
Giuseppe, Japan
Sun 28th June 2009 01:41:58
Gravatar It has got some limitations.

- On RTL (right to left) pages (i.e. Arabic) the pages are rendered incorrectly.
- The hover style seems to work when the page first load, then as you nagivate thru the site it degrades to a point that you have to move the mouse on the edge of the text (but not outside) in order to click it.

Other than that is it an excellent product that produces stunning visual results.

I was able to fix those two problems above by using JQuery Curvy Corners (just google it), download those specific .js files in that page and everything works.

Thanks guys, for this excellent work.
Giuseppe, Japan
Sun 28th June 2009 01:41:00
Gravatar It has got some limitations.

- On RTL (right to left) pages (i.e. Arabic) the pages are rendered incorrectly.
- The hover style seems to work when the page first load, then as you nagivate thru the site it degrades to a point that you have to move the mouse on the edge of the text (but not outside) in order to click it.

Other than that is it an excellent product that produces stunning visual results.

I was able to fix those two problems above by using JQuery Curvy Corners (just google it), download those specific .js files in that page and everything works.

Thanks guys, for this excellent work.
Giuseppe, Japan
Sun 28th June 2009 01:39:18
Gravatar Great script! I was using this on a new site, but I spent hours trying to figure out why my JQuery form validation wouldn't work in IE 6/7/8. Unfortunately it seems it was conflicting with CurvyCorners. I need form validation more than rounded corners, so I had to remove it.

Stupid IE! ARGH!
emptywalls, San Diego
Fri 26th June 2009 23:19:51
Gravatar This is super cool and am looking forward to using it!
Saul Colt, Toronto, Canada
Wed 24th June 2009 16:03:24
Gravatar Nice script, A slight problem in IE but then again IE is a slight problem.
Mike Hankey, Jacksonville, FL
Sat 13th June 2009 03:54:15
Gravatar @Victor please see documentation.
Cameron, Brighton, UK
Wed 10th June 2009 09:23:39
Gravatar i would like to create my own website.can u help me,please?:*:*
mandraburca tatiana, bucharest
Tue 9th June 2009 09:12:45
Gravatar This is great, sure to come in handy... similar but special! ;)
Carlo, Grand Cayman
Sun 7th June 2009 22:34:00
Gravatar
Hi, there, I have just downloaded your "software" from curvy corners and tried to make it work.
Unfortunately it is too complicated for me as I have no html, css knowledge.
Ccould you explain to me please what I am supposed to do in simple layman , plain english fashion.
I am not totaly stupid ,
I know how to copy things into the head section and I can upload pages (ftp) with fetch.

Ok I stop winging
Please help me.
Victor
Victor, London
Sat 6th June 2009 11:32:47
Gravatar I'm looking for this,thanks.
Great site!
lomoman, Beijing
Fri 5th June 2009 09:11:24
Gravatar I'm getting the same error in IE on this page (cannot load) that Owen Manderfield was getting (noted above already). Also, the script is not working on my site in IE. I have not tested Opera.
Bill, Richmond, CA
Fri 5th June 2009 04:12:22
Gravatar Simply and plainly GREAT! Good job man!
Marcelo, Argentina
Thu 4th June 2009 20:41:04
Gravatar hi you there
this code is very useful for us
i'm so happy to saw this
but i have a question:
could we curve inputs such text box or text area, or button ?
in firefox we can but not in IE
could you please help me?
mahmoud, iran
Sun 31st May 2009 15:21:37
Gravatar hi you there
this code is very useful for us
i'm so happy to saw this
but i have a question:
could we curve inputs such text box or text area, or button ?
in firefox we can but not in IE
could you please help me?
mahmoud, iran
Sun 31st May 2009 15:20:33
Gravatar so I read about opera code needing to be in the page but why does IE6
mess up my alignment so bad I know that's not the CC issue tho that's just crappy old IE6
devwray, CO
Thu 28th May 2009 17:11:37
Gravatar this only seems to work right in Firefox

Opera dosen't round the corners

IE6 will let the javascript round the corners but my alignment is all off

Man this is frustrating
devwray, CO
Thu 28th May 2009 17:05:01
Gravatar @R This has been fixed in the latest build available in the trunk. http://code.google.com/p/curvycorners/source/checkout
Cameron, Brighton, UK
Thu 28th May 2009 08:49:12
Gravatar An alert "Wasting my time!" appears each time a page using this script is opened in Safari on both Mac and Windows... :/
R,
Wed 27th May 2009 20:30:30
Gravatar @Leanne I doubt I would implement shadows and glows as this would really slow the script down. I don't think Mozilla has native support for this either.
Cameron Cooke, Brighton, UK
Wed 27th May 2009 20:12:58
Gravatar Great script! I was just wondering if it's possible to plugin some kind of drop shadow effect, or outer glow type script for this? :)
Leanne, Melbourne, Australia
Tue 26th May 2009 14:19:54
Gravatar im using IE8 and this site renders fine, i lalso love this script :D
lewis, glasgow
Tue 26th May 2009 00:34:48
Gravatar I have never had such a easy time implementing something into a website. Really great piece of work and will continue to use and shout its name from rooftops.
Drew, Williamsburg
Mon 25th May 2009 18:26:48
Gravatar I've used this for several clients. It runs smooth, looks great and is easy to use! Thank you!

Tadd
www.studio646.com
Tadd, Michigan
Wed 20th May 2009 13:31:07
Gravatar Awesome! Beautiful clean design. Thank you. Learning how to use it right now. Thank you for doing this.
Anthony Gallina, California USA
Tue 19th May 2009 10:56:45
Gravatar Very nice script but dang if IE isn't such a PITA, IE 7 gets the error about not being able to load the page. Operation aborted dialog box, then it goes to a 404 page. I read about this on MS's site. M$ is so annoying that they can't make anything bloody standard for the better of the world.
Is there a way passed this or a fix for CC?
Pjack,
Mon 18th May 2009 19:47:36
Gravatar This a great script! especially the update version.
I had query about how can I use this script to round form elements like inputs or buttons or labels.[it works in firefox as it use -moz- thing but for IE]
Any thoughts or a code will be appreciated.
I'll be waiting. . Thanks
Ravi, London
Fri 15th May 2009 20:36:30
Gravatar @NickG Thanks for your post. Actually the demos page does not render the corners in IE deliberately, this is to allow you to click the Run CurvyCorners button so that you can see CurvyCorners perform it's magic in front of your eyes.
Cameron, Brighton, UK
Fri 15th May 2009 09:46:46
Gravatar Hiya - great site! However, your demos page doesn't display the rounded corners in IE8. It works fine on the home page. Thanks!
NickG, Southampton
Thu 14th May 2009 22:59:53
Gravatar @Trangsene The latest bleeding-edge version available on the Google Code site has fixed the issue and now allows for background images to be positioned bottom.

@Charlie Please use our Google Support page and post your query on there. Please include an example URL and or screenshot showing the issue.
Cameron, Brighton, UK
Thu 14th May 2009 12:50:17
Gravatar Thanks for the comments regarding the demos not working. This was because I changed the name of the CurvyCorners script and forgot to update the demos. This has now been fixed.

In regards to this site and IE8, I am aware of some issues. They appear to be related to the prototype.js script I am using, I will be looking into this shortly.

Can I also just reiterate that this comment system is not to be used to report issues with the script as we have a Google Group for that, please click on the support link top right.
Cameron, Brighton, UK
Thu 14th May 2009 12:40:46
Gravatar This site is not working at all in IE7 - throws a "canot load" error operationn aborted. or with scriptin errors on line 3936 object required.

function getEventID(element)
if (element._prototypeEventid.....

Owen Manderfield, London, UK
Wed 13th May 2009 16:02:32
Gravatar Did you know that this site doesnt render correctly in IE8?
Kev, UK
Tue 12th May 2009 14:44:56
Gravatar I cannot make this work properly in IE7 using the supplied instructions (great shame since both Chrome and Safari are easy and perfect)

Instead, while I can get the div curved, the shape of the div become very strange, with one block extended. In addition, lots of blank lines are inserted before the text (to which the curved shape forms the background) starts.

Please can you send me a real idiot's guide to getting this to work reliably with IE7 since I really want to use curvycorners.

Many thanks in advance and kind regards, Charlie.
Charlie, London
Tue 12th May 2009 14:02:21
Gravatar It seems it's impossible to have a background image bottom-aligned in IE !
With the 2.0.0 version, the background image was duplicated. With 2.0.3, a background image is always aligned on top. It's a shame, you can't use it for example to do a background image with gradient aligned at the bottom of a div, especially if that div has a variable height :-(
Trangsene,
Sun 10th May 2009 19:39:43
Gravatar Demos aren't running.
Barış, Turkey
Sun 10th May 2009 11:58:43
Gravatar I have been using jquery.corners, and it messes up div placements in IE. Its a pain in the ***!

This CurvyCorners is what i have been looking for. Great job on this!
Dave , Seattle
Tue 5th May 2009 09:21:02
Gravatar Nice one!

* First of all - script support is alive, there is a people who work on it today
* Script is small. Optimized JS code is in between 20kb
* comaptability with common JS frameworks
* implement it into page is a piece of cake
* It`s tracked on google`s project, so you can easily register any issue noticed and view registered issues, see changes and so on.

I have made a search of different JS solutions for rounded corners - this one fits best for me.


and again and again and again - ITS SMAALAAAAALLLLL
U don`t need to load framework+ plugin.
DrBao, Latvia
Mon 4th May 2009 15:44:05
Name:
Location:
Email (not shown):
Message: