views:

82

answers:

0

All other browsers, including IE8, render the form correctly, except IE7; I assume IE6 exibits same problem.

IE7 cuts-off, shrinks the form, and shows about 5% of the input fields;

I removed all css formatting but not change; I have applied several related fixes without success; help or direction as to where to find related information or know fixes is welcome since it has consumed much time without success; thanks;

html is included below;

<pre>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;

<html xmlns="http://www.w3.org/1999/xhtml"&gt;
<head>
  <title>IMM log-in</title>
</head>
<body>
  <form method="post" name="form" id="form" action="/imm/login.htm" style=
  "font-family:arial;font-size:9pt;padding:5px;table.horizontal-align:left;display:inline;">
    <table>
      <tbody>
        <tr>
          <td>
            <table>
              <tbody>
                <tr>
                  <td><label>log-in ID</label><span class="required">*</span></td>
                  <td align="left">
                      <input type="text" name="name" id="form_name" value="" size=
                      "20" style="width:100%;" />
                  </td>
                </tr>
                <tr>
                  <td align="left"><label>password</label><span class="required">*</span></td>
                  <td align="left">
                      <input type="password" name="password" id="form_password"
                      value="" size="20" style="width:100%;" />
                  </td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
        <tr>
          <td align="left">
            <table class="buttons" id="form-buttons">
              <tbody>
                <tr class="buttons">
                  <td class="buttons"><input type="submit" name="ok" id="form_ok" value=
                  " OK " /></td>
                  <td class="buttons"><input type="submit" name="cancel" id="form_cancel"
                  value="Cancel" /></td>
                </tr>
              </tbody>
            </table>
          </td>
        </tr>
      </tbody>
    </table>
  </form>
</body>
</html>

</pre>