Hi,
I am trying to develop a webaiste with Postnote J1.6
Does anyone know how to create the menu 'wide', the logo left above the menu bar and to line out the menu options to the left?
Regards Ronnie
<?php if($this->getParam('logo_type', 'image') == 'image') : ?>
<h1 id="gkLogo">
<a href="./"> </a>
</h1>
<?php elseif($this->getParam('logo_type', 'image') == 'text') : ?>
<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 id="gkToolbarWrap">
<div id="gkToolbar">
<div id="gkToolbarWrap">
<?php if($this->getParam('logo_type', 'image') == 'image') : ?>
<h1 id="gkLogo">
<a href="./"> </a>
</h1>
<?php elseif($this->getParam('logo_type', 'image') == 'text') : ?>
<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 id="gkToolbar">
#gkMenu {width: 99%!important;}
#gkLogo {position: absolute; top: 10px;}
Cheers ;)