Hi ,
Is there anyway to remove the DIV tag that gets created when you put in a simple search box EE tag?
maybe have it so it doesn’t create a div? - it messes up the layout of my page a bit, creating too much vertical white space above the search box.
code:
{exp:search:simple_form search_in="everywhere"}
<input type="text" name="keywords" class="searchbox" title="Type your search keyword here please" />
<input type=image src="button_go_inside.gif" width="38" height="18" border="0" class="button_go" />
{/exp:search:simple_form}what gets created:
<form method="post" action="index.php" >
<div>
<input type="hidden" name="ACT" value="19" />
<input type="hidden" name="XID" value="398c21a48766b228bae70468a02ae416281346ee" />
<input type="hidden" name="RP" value="search/results" />
<input type="hidden" name="NRP" value="" />
<input type="hidden" name="RES" value="" />
<input type="hidden" name="status" value="" />
<input type="hidden" name="weblog" value="" />
<input type="hidden" name="search_in" value="everywhere" />
<input type="hidden" name="where" value="all" />
<input type="hidden" name="site_id" value="1" />
</div>
<input type="text" name="keywords" class="searchbox" title="Type your search keyword here please" />
<input type=image src="button_go.gif" width="38" height="18" border="0" class="button_go" />
</form>
</div>