Dear WebBaker Helpers,
I appreciate if can help me in this basic question
I am new to WB and I have designed my own template, I include the search on the top of my header.
I have added in my a standard search box
<?php
// CODE FOR FRONTEND SEARCH
if (SHOW_SEARCH) { ?>
<form name="search" action="<?php echo WB_URL; ?>/search/index.php" method="get">
<input type="hidden" name="referrer" value="<?php echo defined('REFERRER_ID') ? REFERRER_ID : PAGE_ID; ?>" />
<td width="120">
<input type="text" name="string" class="inp" size="11" value="">
</td>
<td width="51">
<input type="image" name="wb_search" id="wb_search" value="<?php echo $TEXT['SEARCH']; ?>" src="<?php echo TEMPLATE_DIR;?>/images/btn_search.gif" alt="search" border="0" />
</td>
<td width="10" align="right"><img src="<?php echo TEMPLATE_DIR;?>/images/tbl1_r.gif" width="10" height="42"></td>
</tr>
</form>
<?php
} ?>
IT all work fine but:
My problem is that the search results always goes to the WB template and not in my template I use.
Can someone please help to see how I can forward the results to my template page.
Also how one can modify the HTML feel and look of the search results - where is the template code for this.
thanks a lot for your help in the above.

Kind Reagards
MAC
[EDIT - kweitzel]Please use the # butten to mark code! Thanks[/EDIT]