Hi
Try this:
1) Open templateDetails.xml file and find:
- Code: Select all
<position>login</position>
replace with
- Code: Select all
<position>login</position>
<position>search</position>
2) Open ../lib/framework/gk.const.php and find:
- Code: Select all
'login' => 'none',
replace with
- Code: Select all
'login' => 'none',
'search' => 'none',
3) Go to template parameters > advanced settings and enable the use of css override.
4) Open ../css/override.css file and add this line:
- Code: Select all
#gkSearch {float: right; margin: 20px 34px 0 20px; }
5) Open ../layouts/default.php and replace this:
- Code: Select all
<?php if($this->API->modules('inset')) : ?>
<div id="gkTabletMenu">Tablet menu</div>
<?php endif; ?>
</div>
with
- Code: Select all
<?php if($this->API->modules('inset')) : ?>
<div id="gkTabletMenu">Tablet menu</div>
<?php endif; ?>
</div>
<?php if($this->API->modules('search')) : ?>
<section id="gkSearch">
<jdoc:include type="modules" name="search" style="<?php echo $this->module_styles['search']; ?>" />
</section>
<?php endif; ?>
6) Finally go to modules manager and publish search module on "search" position.
It should look like this:
screen.jpg
Cheers