Topic: Putting a search bar in the header section?
How do I go about putting a search bar in the header area so I can eliminate the "Search" nav link so it would be more user accessible? What I tried was this, but it didn't work...
<div class="search">
<form method="get" id="search" action="search.php">
<input name="keywords" type="text" id="headersearch" value="Search the Forums..." size="42" />
<input type="submit" name="search" value="Go" accesskey="s" />
</form>
</div>
Is this anywhere near correct?