Has anyone else experience issues with section breaks in firefox when used following a line which holds multiple fields. It looks great in IE but in Firefox (at least with version 3) it breaks the form.
To recreate this problem create a form with 3 elements on row 1 followed by a section break. CSS the 3 fields together
#li_1{
float: left;
width: 30%;
clear: both;
}
#li_2{
float: left;
width: 30%;
}
#li_3{
float: left;
width: 30%;
}
(For me at least) You will see in IE the form works and looks as expected. In Firefox the fields above the section break can not be selected.
I would have posted a form myself to quickly show this but I'm messing with post-functions trying to implement something right now.