we added a new module position (efTopRight) to the Shop and Bay template according to Gavick's tutorial.
In templateDetails.xml under <!--Template specific Module Positions --> we added the line:
- Code: Select all
<position>efTopRight</position>
In gk.const.php under $GK_TEMPLATE_MODULE_STYLES = array( we added the line:
- Code: Select all
'efTopRight' => 'none',
In logo.php between the code for the logo and the cart we added the lines:
- Code: Select all
<?php if($this->API->modules('efTopRight')) : ?>
<div class="newstyle">
<jdoc:include type="modules" name="efTopRight" style="<?php echo $this->module_styles['efTopRight']; ?>" />
</div>
<?php endif; ?>
This new module position should be positioned on the top right of our homepage and will contain several graphics (Image Show) to promote special products.
After inserting the new module position, the links for the cart and the topmenu are moved to the left towards the logo defined in the template configuration. We want these links to appear beneath the newly added module position, aligned to the right.

Where can we define this?
Thanks for your help!
Bye...
Andy