I had this problem before I remember (about a year ago) but then I simply "solved" it by enclosing the whole form in a div and style that, but today that is not an option. The problem is this:
I have several forms on a site, some generated by Chornoforms, others not. The one's generated by Chronoforms, work perfectly in all browsers, except in IE.
A form in Chronoforms that looks like:
Will be generated in Firefox, Chrome, Safari like so:
Which is perfect, but in IE it gets rendered as:
I tested with IE9 and IE8.
The problem is that styles that depend on the form-element do not get applied.
I have several forms on a site, some generated by Chornoforms, others not. The one's generated by Chronoforms, work perfectly in all browsers, except in IE.
A form in Chronoforms that looks like:
<label>xx</label><input type=text/>
Will be generated in Firefox, Chrome, Safari like so:
<form>
<label>xx</label><input type=text/>
</form>
Which is perfect, but in IE it gets rendered as:
<p><form /></p>
<label>xx</label><input type=text/>
I tested with IE9 and IE8.
The problem is that styles that depend on the form-element do not get applied.