Rules2liveby
MIS
I have created a decent enough form in frontpage, simplicity itself with only 5 text boxes and a submit button. It then (successfully) emails the results to me. My problem is this:
The text boxes come out looking wierd - some are flush with the page surface and some are sunken. They are all in the right place and size, just the textbox 'effect' is wrong on some. The really odd thing is the code is identical for the text boxes... See below:
<table border="0" width="100%" id="table2" cellspacing="0" cellpadding="0" height="110">
<tr>
<td width="214" height="26"><b><font face="Arial" size="2">
Company Name</font></b></td>
<td height="26">
<input type="text" name="Company_Name" size="43" tabindex="1"></td>
</tr>
<tr>
<td width="214" height="26"><b><font face="Arial" size="2">
Cstomer Account Number</font></b></td>
<td height="26">
<input type="text" name="Account_Number" size="43" tabindex="1"></td>
</tr>
<tr>
<td width="214" height="26"><b><font face="Arial" size="2">
Your Name</font></b></td>
<td height="26">
<input type="text" name="Your_Name" size="43" tabindex="1"></td>
</tr>
<tr>
<td width="214" height="26"><b><font face="Arial" size="2">
Your Email Address</font></b></td>
<td height="26">
<input type="text" name="Your_Email" size="43" tabindex="1"></td>
</tr>
<tr>
<td width="214" height="26"><b><font face="Arial" size="2">
SupportBank Password</font></b></td>
<td height="26">
<input type="password" name="Password" size="43" tabindex="1"></td>
</tr>
</table>
(apologies for the spacing)
I am viewing them through IE 6 for XP-SP2. Think it's a browser issue...
The text boxes come out looking wierd - some are flush with the page surface and some are sunken. They are all in the right place and size, just the textbox 'effect' is wrong on some. The really odd thing is the code is identical for the text boxes... See below:
<table border="0" width="100%" id="table2" cellspacing="0" cellpadding="0" height="110">
<tr>
<td width="214" height="26"><b><font face="Arial" size="2">
Company Name</font></b></td>
<td height="26">
<input type="text" name="Company_Name" size="43" tabindex="1"></td>
</tr>
<tr>
<td width="214" height="26"><b><font face="Arial" size="2">
Cstomer Account Number</font></b></td>
<td height="26">
<input type="text" name="Account_Number" size="43" tabindex="1"></td>
</tr>
<tr>
<td width="214" height="26"><b><font face="Arial" size="2">
Your Name</font></b></td>
<td height="26">
<input type="text" name="Your_Name" size="43" tabindex="1"></td>
</tr>
<tr>
<td width="214" height="26"><b><font face="Arial" size="2">
Your Email Address</font></b></td>
<td height="26">
<input type="text" name="Your_Email" size="43" tabindex="1"></td>
</tr>
<tr>
<td width="214" height="26"><b><font face="Arial" size="2">
SupportBank Password</font></b></td>
<td height="26">
<input type="password" name="Password" size="43" tabindex="1"></td>
</tr>
</table>
(apologies for the spacing)
I am viewing them through IE 6 for XP-SP2. Think it's a browser issue...