Hi,
I need to add only the word MENU before the icon in the Mobile menu. I can add it in the CSS but that way it wound be translatable.
How can I accomplish that?
Thanks,
Gorast
<div id="gkMobileMenu">
<div id="mobileMenuString"><?php echo JText::_('MOBILE_MENU_STRING'); ?></div>
<i id="mobile-menu-toggler" class="fa fa-bars"></i>
<select id="mobileMenu" onChange="window.location.href=this.value;" class="chzn-done">
<?php
$this->mobilemenu->loadMenu($this->API->get('menu_name','mainmenu'));
$this->mobilemenu->genMenu($this->API->get('startlevel', 0), $this->API->get('endlevel',-1));
?>
</select>
</div>