Actually it doesn't work well and needs deeper intervention.
Here's my suggestion:
Open ../templates/gk_gamebox/layouts/blocks/header.php
and remove this lines:
- Code: Select all
<?php if( $this->modules('banner1')) : ?>
<div id="gkBanner1" class="clear clearfix">
<jdoc:include type="modules" name="banner1" style="<?php echo $this->module_styles['banner1']; ?>" />
</div>
<?php endif; ?>
Them open ../templates/gk_gamebox/layouts/blocks/nav.php
and find this lines:
- Code: Select all
<h1 id="gkLogo" class="text">
<a href="./">
<?php if($this->getParam('logo_text', '') != '') : ?><span class="gkLogoText"><?php echo $this->getParam('logo_text', ''); ?></span><?php endif; ?>
<?php if($this->getParam('logo_slogan', '') != '') : ?><span class="gkLogoSlogan"><?php echo $this->getParam('logo_slogan', ''); ?></span><?php endif; ?>
</a>
</h1>
<?php endif; ?>
</div>
replace with
- Code: Select all
<h1 id="gkLogo" class="text">
<a href="./">
<?php if($this->getParam('logo_text', '') != '') : ?><span class="gkLogoText"><?php echo $this->getParam('logo_text', ''); ?></span><?php endif; ?>
<?php if($this->getParam('logo_slogan', '') != '') : ?><span class="gkLogoSlogan"><?php echo $this->getParam('logo_slogan', ''); ?></span><?php endif; ?>
</a>
</h1>
<?php endif; ?>
<?php if( $this->modules('banner1')) : ?>
<div id="gkBanner1" class="clear clearfix">
<jdoc:include type="modules" name="banner1" style="<?php echo $this->module_styles['banner1']; ?>" />
</div>
<?php endif; ?>
</div>
Finally open template.css file and add this:
- Code: Select all
#gkTopLogo {position: relative;}
#gkBanner1 {position: absolute; top: 0; max-width: 500px; right: 0; }
#gkBanner1>div {padding: 10px;}
This should work fine
screen_2011-07-11.png
Cheers