Log in

View Full Version : IE7 problem



maxrok
06-17-2008, 06:54 AM
Very tough to resolve issue. I have this layout which works fine in Firefox, but in IE7 the yellow text area drops down below the 'Description" label, and the texarea must be wider then parent DIV: I am trying to create fluide layout mixing 2-columns with a single column layout..

I am also trying to get the fix working even if user would change browser font size.

I colored DIVs for better presentation of this issue. A suggestion to this advanced issue would be greatly appreciated.

http://s215240594.onlinehome.us/divtest.html

DimX
06-17-2008, 08:51 AM
Turn this:


<div class="right" style="width: 150%; height: ">
<p><span id="sprytextarea1">
<textarea name="textarea2" style="width: 60%; background-color:#FBF3BF">&nbsp;</textarea>
</span></p>
</div>


into



<div class="right">
<p><span id="sprytextarea1">
<textarea name="textarea2" style="width: 150%; background-color:#FBF3BF">&nbsp;</textarea>
</span></p>
</div>


That span doesn't seem to be necessary though.

maxrok
07-02-2008, 02:57 AM
yes it works! thank you