Hey I've got a list of links that I want to display followed by a search field (using a form), but the form seems to want to start a new line no matter what I try. It looks like this:
HTML Code:
<a href="">Home</a>
<a href="">Post </a>
<form name="search" action="search.php" method="POST">
	<input type="text" name="searchTerm">
		<select>
                <!-- Options -->
		</select>
	<input type="submit" name="submitSearch" value="Search">
</form>
and it comes out with the links one line above the form elements.. i want this to be a single horozontal line running across the top of my page... any ideas?