Hi Im using the msocial template and I want to put the search module exactly as the StoreBox does in the middle of the top menu . I have followed the
http://www.gavick.com/documentation/joo ... -position/
but the search module is always along with the login button
Is something wrong with the insertion in (msocial\layouts\default.php). You can see below the insertion
<div id="gkHeader">
<div id="gkTop">
<?php $this->layout->loadBlock('logo'); ?>
<?php if($this->API->modules('search')) : ?>
<div class="newstyle">
<jdoc:include type="modules" name="search"
style="<?php echo $this->module_styles['search']; ?>" />
</div>
<?php endif; ?>
<?php if($this->API->get('menu_type', 'overlay') == 'classic') : ?>
<?php if($this->API->get('show_menu', 1)) : ?>
<div id="gkMobileMenu" class="gkPage"> <i id="mobile-menu-toggler" class="icon-reorder"></i>
<select onChange="window.location.href=this.value;" class="chzn-done">
<?php
$this->mobilemenu->loadMenu($this->API->get('menu_name','mainmenu'));
$this->mobilemenu->genMenu($this->API->get('startlevel', 0), $this->API->get('endlevel',-1));
?>
</select>
</div>
<?php endif; ?>
<?php endif; ?>
any suggestion?
thanks a lot