Well, here's another way:
Open ../templates/gk_mystore/layouts/blocks/mainnav.php file and find this code:
- Code: Select all
<?php if ($this->getParam('logoType')=='image'): ?>
<h1 class="logo">
<a href="index.php" title="<?php echo $this->sitename(); ?>"><span><?php echo $this->sitename(); ?></span></a>
</h1>
<?php else : ?>
<div class="logo-text">
<h1><a href="index.php" title="<?php echo $this->sitename(); ?>"><span><?php echo GK_LOGO; ?></span></a></h1>
<p class="site-slogan"><?php echo GK_SLOGAN;?></p>
</div>
<?php endif; ?>
Cut the code and paste it on this file:
../templates/gk_mystore/layouts/blocks/toolbar.php
after this line:
- Code: Select all
<div id="gk-toolbar">
so it should look like this:
- Code: Select all
<div id="gk-toolbar">
<?php if ($this->getParam('logoType')=='image'): ?>
<h1 class="logo">
<a href="index.php" title="<?php echo $this->sitename(); ?>"><span><?php echo $this->sitename(); ?></span></a>
</h1>
<?php else : ?>
<div class="logo-text">
<h1><a href="index.php" title="<?php echo $this->sitename(); ?>"><span><?php echo GK_LOGO; ?></span></a></h1>
<p class="site-slogan"><?php echo GK_SLOGAN;?></p>
</div>
<?php endif; ?>
Now, open template.css file and add this line:
- Code: Select all
h1.logo {position:absolute!important;margin-top: -20px!important}
#gk-top-menu {margin: 10px 0 0 170px;}
The final result is this:
Cheers