Why is the width of the "formCell" table set to the same width as the text input inside it, even if there is hint text present? There is no room left for the hint text, so it gets all squished up with line breaks (see attachment).
Here's the output HTML as seen in Firebug:
Here's the output HTML as seen in Firebug:
Code:
<table cellspacing="0" cellpadding="0" border="0" class="formCell" style="border: 0px none ; margin: 0px; padding: 0px; background-image: none; background-color: transparent; white-space: normal; [b]width: 146px[/b];" id="isc_7E"> <tbody> <tr> <td valign="middle" style="white-space: nowrap;"> <input type="text" tabindex="3370" style="[b]width: 146px[/b]; height: 20px; -moz-user-focus: normal;" class="textItem" autocomplete="OFF" oninput="isc_TextItem_84.$43g()" spellcheck="true" $9a="$9b" $89="isc_TextItem_84" handlenativeevents="false" id="isc_7C" name="isc_OID_72"/> </td> <td class="formHint" id="isc_7F">Here is some hint text</td> </tr> </tbody> </table>
Comment