Please replace the ??? with your data!
- Your URL: http://none
- The browser used: Safari
- cforms version: newest
- Your Wordpress version: newest
This isn't a question but maybe someone might find this useful. I was having trouble getting the CAPTCHA image lining up right in safari, so I thought I would post my fix, and also: Oliver( I think) you might want to add this to the CSS on the next release.
Instead of:
img.captcha {
vertical-align: text-bottom;
margin:0 0 0 10px!important;
padding:0!important;
border:none!important;
float:none!important;
}
I used:
img.captcha {
vertical-align: bottom;
margin:0 0 0 10px!important;
padding:0!important;
border:none!important;
float:none!important;
}
That made everything line-up the same in the four major browsers.
Cheers!