Hi
I get the information from http://www.joomlart.com/forums/showt…light=language, however i want to display the language selection in Main Menu (refer to the picture below) not Top Menu (refer to the picture below), anyone know how to do that?
thanks you
2 answers
Hi
Open app\design\frontend\default\jm_epidiotemplate\pag e\html\header.phtml file, find following code section:
Code:
<div class="quick-access"> <div class="shop-access"> <strong><?php echo $this->getWelcome() ?></strong> <?php echo $this->getChildHtml('topLinks') ?> </div> </div> <!-- MAIN NAVIGATION --> <div id="ja-mainnav" class="wrap"> <?php echo $this->getChildHtml('topMenu') ?> </div> <!-- //MAIN NAVIGATION -->
and change to:
Code:
<div class="quick-access"> <div class="shop-access"> <strong><?php echo $this->getWelcome() ?></strong> <?php echo $this->getChildHtml('topLinks') ?> </div> </div> <!-- MAIN NAVIGATION --> <div id="ja-mainnav" class="wrap"> <?php echo $this->getChildHtml('topMenu') ?> <div class="shop-tools"> <?php echo $this->getChildHtml('store_language') ?> </div> </div> <!-- //MAIN NAVIGATION -->
Maybe you have to style the shop-tools class to your suitable.
This question is now closed