Problem with moving the search box up

Andy.N

Well-known member
I use Flexile style and trying to get the search box up like this site
I modified the header template from
Code:
<div id="header">
<xen:if is="@showRightContentArea"><xen:include template="right_content_area" /></xen:if>
<xen:include template="logo_block" />
<xen:include template="navigation" />
<xen:if is="{$canSearch}"><xen:include template="search_bar" /></xen:if>
</div>
to
Code:
<div id="header">
<xen:if is="@showRightContentArea"><xen:include template="right_content_area" /></xen:if>
<xen:include template="logo_block" />
<xen:if is="{$canSearch}"><xen:include template="search_bar" /></xen:if>
      <xen:include template="navigation" />
</div>

However, the result on my site is that the searchbox comes into the leaderboard banner on the ad_header template
I tried to change header height, etc but it does not help.

Thanks for your help
 
Top Bottom