Hi,
By default language switcher module published on "lang position" is displayed just above the footer menu. Does someone explain to me how & where I can change this position.
Thanks in advance
<?php if($this->API->modules('lang')) : ?>
<section id="gkLang">
<div class="gkPage">
<jdoc:include type="modules" name="lang" style="<?php echo $this->module_styles['lang']; ?>" />
</div>
</section>
<?php endif; ?>
<?php if(($this->API->get('reg_link') == '1' && $userID == 0) || $this->API->modules('login')) : ?>
<div id="gkUserArea">
<?php if($this->API->modules('login')) : ?>
<a href="<?php echo $this->API->get('login_url', 'index.php?option=com_users&view=login'); ?>" id="gkLogin"><?php echo ($userID == 0) ? JText::_('TPL_GK_LANG_LOGIN') : JText::_('TPL_GK_LANG_LOGOUT'); ?></a>
<?php endif; ?>
<?php if($this->API->get('reg_link') == '1' && $userID == 0) : ?>
<a href="<?php echo $this->API->get('reg_url', '#'); ?>" id="gkRegister"><?php echo JText::_('TPL_GK_LANG_REGISTER'); ?></a>
<?php endif; ?>
</div>
<?php endif; ?>