In your code above, find:
Code:
<td width="50%" bgcolor="#F1F1F1"><smallfont><form action="search.php" method="post">
Change it to:
Code:
<form action="search.php" method="post"><td width="50%" bgcolor="#F1F1F1"><smallfont>
Then find:
Code:
</form></smallfont>
</td>
Change it to:
Code:
</smallfont>
</td></form>
This will get rid of the extra line. It happens with the <form> tags. I suspect you are not familiar with HTML.