<em>@pierke 328646 wrote:</em><blockquote>My customer uses Kyanite II and is happy with the template.
However I have been asked to ‘move up’ the template so that the menu is locate on top of the screen.
As far as i can see the logo and search positions prevent me from doining this. Is there a way that I can get this to work?</blockquote>
Hello ,
Please open “/templates/ja_kyanite_ii/layouts/default.php”, then move “mainnav” block to above “header” block.
Before:
[PHP]
<!– HEADER –>
<?php $this->loadBlock(‘header’) ?>
<!– //HEADER –>
<!– MAIN NAVIGATION –>
<?php $this->loadBlock(‘mainnav’) ?>
<!– //MAIN NAVIGATION –>
[/PHP]
After:
[PHP]
<!– MAIN NAVIGATION –>
<?php $this->loadBlock(‘mainnav’) ?>
<!– //MAIN NAVIGATION –>
<!– HEADER –>
<?php $this->loadBlock(‘header’) ?>
<!– //HEADER –>
[/PHP]
Hope this help.
Best regards.