Tag nesting in Form_builder
With a field type of "section" it's possible to use block tags (eg h3) but the form builder wraps these in span tags, making it invalid according to the W3C validator. I suppose these should be not wrapped, or wrapped with divs?
Comments
$fields['my_field'] = array('section' => 'MY SECTION'); $this->form_builder->section_tag = 'h4'; $this->form_builder->set_fields($fields);