I have created a new module position in StoreBox in order to have the language switcher just in the left corner, in the white zone.
Unfortunately the modules do not show in front of all even with a z-index : 1000. What can I do ?
In /templates/gk_storebox/layouts/default.php, I added line 83 :
- Code: Select all
<?php if($this->API->modules('langcurrency')) : ?>
<div id="gklangcurrency">
<div class="gkCols6<?php if($this->API->modules('langcurrency') > 1) : ?> gkNoMargin<?php endif; ?> gkPage">
<jdoc:include type="modules" name="langcurrency" style="<?php echo $this->module_styles['langcurrency']; ?>" modnum="<?php echo $this->API->modules('langcurrency'); ?>" />
<!--[if IE 8]>
<div class="ie8clear"></div>
<![endif]-->
</div>
</div>
<?php endif; ?>
I also added this code in the override.css file
- Code: Select all
#gklangcurrency {
margin-top: -30px;
margin-bottom: -15px;
z-index: 1000;
}
Thanks for your help resolving my issue.
Kris