So below is a segment of code produced by my script.
I totally removed the CSS link, etc, so it would JUST be what's here. The
edit field seems to come with some extra padding, so I would have to make it
size 10 to get it to not push the second column too much, but even then I
can see it does affect it.
If I remove the text input fields and replace it with just garbage text, the
table comes out all nice and even.
Am guessing there some attribute about TEXT INPUT fields I don't know about?
Thanks ahead....as always.
<table border="1" width="500" bordercolor="#f f6600" cellpadding="5" >
<tr>
<td WIDTH="250" ALIGN="RIGHT" VALIGN="MIDDLE" >
Email
</td>
<td WIDTH="250" ALIGN="LEFT" VALIGN="MIDDLE" >
<input type="hidden" name="stage" value='1'>
<input type="text" name="email" value="" maxlength="64" size="30">
</td>
</tr>
I totally removed the CSS link, etc, so it would JUST be what's here. The
edit field seems to come with some extra padding, so I would have to make it
size 10 to get it to not push the second column too much, but even then I
can see it does affect it.
If I remove the text input fields and replace it with just garbage text, the
table comes out all nice and even.
Am guessing there some attribute about TEXT INPUT fields I don't know about?
Thanks ahead....as always.
<table border="1" width="500" bordercolor="#f f6600" cellpadding="5" >
<tr>
<td WIDTH="250" ALIGN="RIGHT" VALIGN="MIDDLE" >
</td>
<td WIDTH="250" ALIGN="LEFT" VALIGN="MIDDLE" >
<input type="hidden" name="stage" value='1'>
<input type="text" name="email" value="" maxlength="64" size="30">
</td>
</tr>
Comment