Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Web page forms (from Frontpage) viewing

Status
Not open for further replies.
Sep 11, 2002
49
GB
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...
 
By itself, the code you've posted looks normal. All text boxes appear the same here in XP SP2's IE 6 as well as Mozilla under Linux. Are you sure ther's no other formatting within the page that you're actually looking at?
 
Problem solved...

I cleared the history in IE and that seems to have done the trick. It's odd though...

Cheers,
P
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top