could you tell me how i have to change the code that the menu is right beside the logo (in the same row)?
Btw - good job with the gavern framework - i hope it will be out "blank" soon

Best Regards
<?php if($this->getParam('logo_type', 'image') == 'image') : ?>
<h1 id="gkLogo">
<a href="./">
<img src="<?php echo $logo_image; ?>" alt="<?php echo $this->getPageName(); ?>" />
</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; ?>