View Single Post
Old 11-10-2006, 08:41 AM   #4 (permalink)
fuser
Banned
 
fuser's Avatar
 
Join Date: 05-19-06
Posts: 146
iTrader: 0 / 0%
fuser is liked by many
Hi, heres the code. I want to make that rectangle around the searchbox and search buttom to disappear, not de rectangle of the search box.

Thanks for the help!

Code:
<center> <table cellpadding="5" cellspacing="1" class="searchBox"> <tr> <td align="center"> <form action="index.php" method="get"> <table><tr><td> <div align="left"> <input type="text" name="query" id="query" size="40" value="<? print quote_replace($query);?>" action="include/js_suggest/suggest.php" columns="2" autocomplete="off" delay="1500"> </div> <td> <input type="submit" value="<?=$sph_messages['Search']?>"> </td></tr></table> <? if ($adv==1 || $advanced_search==1) { ?> <table width = "100%"> <tr> <td width="40%"><input type="radio" name="type" value="and" <?=$type=='and'?'checked':''?>><?=$sph_messages['andSearch']?></td> <td><input type="radio" name="type" value="or" <?=$_REQUEST['type']=='or'?'checked':''?>><?=$sph_messages['orSearch']?></td></tr> <tr> <td><input type="radio" name="type" value="phrase" <?=$_REQUEST['type']=='phrase'?'checked':''?>><?=$sph_messages['phraseSearch']?></td> <td><?=$sph_messages['show']?> <select name='results'> <option <? if ($results_per_page==10) echo "selected";?>>10</option> <option <? if ($results_per_page==20) echo "selected";?>>20</option> <option <? if ($results_per_page==50) echo "selected";?>>50</option> <option <? if ($results_per_page==100) echo "selected";?>>100</option> </select> <?=$sph_messages['resultsPerPage']?> </td> </tr> </table> <?}?> <?if ($catid<>0){?> <center><b><?=$sph_messages['Search']?></b>: <input type="radio" name="category" value="<?=$catid?>"><?=$sph_messages['Only in category']?> "<?=$tpl_['category'][0]['category']?>'" <input type="radio" name="category" value="-1" checked><?=$sph_messages['All sites']?></center> <? }?> <input type="hidden" name="search" value="1"> </form> <?if ($has_categories && $search==1 && $show_categories){?> <a href="search.php"><?=$sph_messages['Categories']?></a> <? }?> </td> </tr> </table> </center>
fuser is offline   Reply With Quote