Quote:
Originally Posted by RazorSharpe
quick, simple fix ...
remove this part:
Code:
<table width=302 style='border: 0px solid black;' cellpadding=0 cellspacing=0>
<tbody align="center"><form name='search' action='/ct/search.php' method='post'>
<tr><!-- -->
<input name='search' type='text' size='10' Value='Big Boobs'>
<input name='Search' type='submit' Value='Search'>
</tr></form>
</tbody>
</table>
and replace it with this:
Code:
<form action='/ct/search.php' method='post' name='search' id="search">
<table width="302" style='border: 0px solid black;' cellpadding="0" cellspacing="0">
<tr>
<td align="center"><input name='search' type='text' size='10' value='Big Boobs' />
<input name='Search' type='submit' value='Search' /></td>
</tr>
</table>
</form>
|
But that is not actually in my source - The only thing in my source that appears for the searchbar is -
Code:
<tr>
<td class="center" align="center">{{include-searchbar.inc}}</td>
</tr>