Same result. The box is empty with 2 headers Thread and Forum
It's frustrating
Here is the search piece of code I have in my navbar template
Code:
<!-- search -->
<if condition="$show['searchbuttons']">
<td align="right" nowrap="nowrap" valign="top">
<if condition="$show['member']">
<form action="search.php?do=process" method="post">
<else />
<form action="search.php$session[sessionurl_q]" method="post">
</if>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size:10px" title="nohilite">
<input type="hidden" name="do" value="process" />
<input type="hidden" name="quicksearch" value="1" />
<input type="hidden" name="childforums" value="1" />
<input type="hidden" name="exactname" value="1" />
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<div id="tb-searchdiv">
<div id="tb-searchbox"><input type="text" id="search_input" name="query" tabindex="1001" maxlength="128" value="$vbphrase[live_search]" onfocus="if(this.value=='$vbphrase[live_search]')this.value='';" onblur="if(this.value=='$vbphrase[live_search]')this.value='';" onkeyup="showHint(this.value)" /></div>
</div>
</form>
<div id="search_results" class="smallfont" style="position:absolute;top:150px; right:30px; left:50%; border: 2px solid #999999; color:grey; background-color: #F8F8F8 ; padding: 10px; display:none;overflow:auto; height:200px">
<div align="left"><a href="#" onClick="overlayclose('search_results'); return false">Close</a></div>
</div>
</td>
<td nowrap="nowrap" id="navbar_search" class="smallfont"> <a href="search.php$session[sessionurl_q]">Options</a> <script type="text/javascript"> vbmenu_register("navbar_search"); </script></td>
</tr>
<tr>
</tr>
</table>
</form>
<!-- / search -->