views:

30

answers:

1

Hi,

I have a form which has expanded beyond the desired height in IE6 only :(

Please view this fiddle for the problem:

http://jsfiddle.net/fbTDZ/

I don't see an issue in other browsers.

+1  A: 

Your issue resides in the fact that your h3 is too wide and your inputs are pushed below it, which you then use relative positioning to pull them back up. Restyle the h3 to be display: inline or at least narrow its width and then restyle the inputs to not have to reposition them. That will get you toward what you seek.

Scott
Nice one.A proper wood for the trees moment :)
RyanP13