Dave, we don't officially support IE6 but I did take a look at the forms and it's appears it's the sub-labels in the complex form fields that are causing your display issue.
You can always use the IE conditional statement to add IE6 specific styles. Just put something like this in your page header, below the wp_head() call.
<!--[if lte IE 6]>
<style type="text/css">
.gform_wrapper .ginput_complex label, .gform_wrapper .gfield_time_hour label, .gform_wrapper .gfield_time_minute label, .gform_wrapper .gfield_date_month label, .gform_wrapper .gfield_date_day label, .gform_wrapper .gfield_date_year label, .gform_wrapper .instruction {
display:block;
font-size:10px;
letter-spacing:1px;
margin:3px 0 8px;
}
</style>
<![endif]-->
That should get you pointed in the right direction. You can tweak the margins and values from there and add other styles in that block as necessary.
Posted 14 years ago on Tuesday March 2, 2010 |
Permalink