problems with forms

liunx

Guest
Hi Folks,<br />
<br />
i uploaded a page here:<br />
<!-- m --><a class="postlink" href="http://www.physiogel.info/test/strange_error.htm">http://www.physiogel.info/test/strange_error.htm</a><!-- m --><br />
you can see a form on the page wich i use for navigation.<br />
my problem is, that the table in the background gets too big (high) when i insert the form into the table. u can see that there is free space between the lower bottom of the form and the lower bottom of the table. where does this space come from?<br />
<br />
when i open the page in opera 6 it looks right without any space between the bottom of the form and the bottom of the table, but in ie 6 the table's height is higher than it should be.<br />
how can i fix this problem in ie6?<br />
<br />
thx<br />
<br />
tim<!--content-->Move your form tags out of the table like this:<br />
<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><br />
<html><br />
<head><br />
<title>Strange Error - please help</title><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
</head><br />
<br />
<body><br />
<form name="jsnavigation" method="post" action=""><br />
<table width="100%" height="10" border="0" cellpadding="0" cellspacing="0" bgcolor="002580"><br />
<tr> <br />
<td align="right"><br />
<select name="targets" onChange="window.location=document.jsnavigation.targets.options[document.jsnavigation.targets.selectedIndex].value"><br />
<option value="" selected>Please choose your language</option><br />
<option value="http://www.physiogel.info/int/index.htm">English version</option><br />
<option value="http://www.physiogel.info/de/index.htm">German version</option><br />
<option value="http://www.physiogel.info/index_fr.htm">French version</option><br />
<option value="http://www.physiogel.info/index_i.htm">Italian version</option><br />
<option value="http://www.physiogel.co.kr/">Korean version</option><br />
<option value="http://www.physiogel.info/">go to language choosing page</option><br />
</select><br />
</td><br />
</tr><br />
</table><br />
</form><br />
</body><br />
</html><!--content-->:( :( :( :( :( :( <br />
Very Odd!<!--content-->Placing FORM tags outside the TABLE works for me, too. But would you do if your form is part of the table with other forms(in one of the TD) and you can't place FORM tags outside it - other forms will be effected.<!--content-->
 
Back
Top