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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form tag annoyance with Netscape

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Does anyone know hoe to get around this pesky Netscape glitch when using a form tag. As seen in the code below, the form tag is causing a space between the header and body of the table. Then when its placed in another area to make it look good in Netscape, its screwing up the height of the table. I want the table to appear in both IE and Netscape exactly as it does here in this code with IE. Thanks

<table cellspacing=&quot;0&quot; cellpadding=&quot;5&quot; border=&quot;0&quot; bgcolor=&quot;#cdd1e7&quot; width=&quot;284&quot;>
<tr>
<form>
<td width=&quot;176&quot; align=&quot;center&quot;><select onChange=&quot;#&quot; name=&quot;select&quot;>
<option value=&quot;#&quot;>Pick Your Team</option>
<option value=&quot; <option value=&quot; Series.com</option>
<option value=&quot; Legends</option>
<option value=&quot; <option value=&quot;td> </form>
<td width=&quot;108&quot; align=&quot;center&quot; valign=&quot;top&quot;><img src=&quot;test&quot; width=&quot;88&quot; height=&quot;31&quot; border=&quot;0&quot; /></td>
</tr>
</table>
 
WharfRatOne,

Have you tried placing the form tags outside the table? You should also give your form a name.

<form name=&quot;myformname&quot;>
<table cellspacing=&quot;0&quot; cellpadding=&quot;5&quot; border=&quot;0&quot; bgcolor=&quot;#cdd1e7&quot; width=&quot;284&quot;>
<tr>

<td width=&quot;176&quot; align=&quot;center&quot;><select onChange=&quot;#&quot; name=&quot;select&quot;>
<option value=&quot;#&quot;>Pick Your Team</option>
<option value=&quot; <option value=&quot; Series.com</option>
<option value=&quot; Legends</option>
<option value=&quot; <option value=&quot;td>
<td width=&quot;108&quot; align=&quot;center&quot; valign=&quot;top&quot;><img src=&quot;test&quot; width=&quot;88&quot; height=&quot;31&quot; border=&quot;0&quot; /></td>
</tr>
</table>
</form>


fengshui_1998
 
WharfRatOne.

Can you publish your code? I also get an invalid character at within this code. It appears it doesn't like the # as code.

<select onChange=&quot;#&quot;

fengshui_1998
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top