Results 1 to 3 of 3

Thread: IE7 problem

  1. #1
    Join Date
    Jun 2008
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default IE7 problem

    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
    Last edited by maxrok; 06-17-2008 at 07:01 AM.

  2. #2
    Join Date
    Jun 2006
    Posts
    182
    Thanks
    0
    Thanked 14 Times in 14 Posts

    Default

    Turn this:
    HTML Code:
    <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

    HTML Code:
    <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.

  3. The Following User Says Thank You to DimX For This Useful Post:

    maxrok (07-03-2008)

  4. #3
    Join Date
    Jun 2008
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Thumbs up thank you

    yes it works! thank you

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •