height of cell to much with form code

Hi,<br />
<br />
I have a cell which is a cell of 4 in a horizontal table which forms part of a topbar menu. The problem is that the form code behind the search button & box seems to fatten the height of the box. I need it as slim as it would be without the lines <form method="POST" action="search.cfm"> and </form>. Here is the full code:<br />
<br />
<id=menuitem15 align=center width=231 height=19><br />
<td width="250"><br />
<form method="POST" action="search.cfm"> <br />
<font face="Verdana" color="#FFFFFF" size="2"><br />
<b>Product Search</b></font> <br />
<input type="text" class= "inputtext" SIZE=6 name="Keyword">&nbsp;<br />
<a href=http://www.htmlforums.com/archive/index.php/"file:///C:/website/Search.cfm"><br />
<input type="submit" class="searchsubmit" value="Go"> </a><br />
</form><br />
<br />
thanks for all your help,<br />
<br />
Tim.<!--content-->in IE ONLY you can add this<br />
<br />
<form method="POST" action="search.cfm" style="display:inline"> <br />
<br />
that will not work in NS and there is no fix that I know of for it.<br />
<br />
the <form> tag is a box element so it creates margins around itself. that style I add will slim it down.<!--content-->
 
Back
Top