2 search boxes on blog. How do I rid of it?

Im not 100% sure how the WP widgets work, nor where/how the code is located as im not a wordpress user myself, however to remove the lower search box (which is search box 1 and the upper search box is search box 2, although it doesn't matter which is removed), you'll be looking for the following code:

Code:
<li id="search" class="widget">
 		<h3>Search</h3>
 		<ul>

  	 <form action="/index.php" method="get" id="searchform">
	
		<input type="text" style="width: 100px;" id="s" name="s"><input type="submit" value="Search">

	</form>
 		</ul>
 </li>

Once you find it (I assume it's in index.php or something as such) remove it.
 
Back
Top Bottom