Hello 🙂
this is my first post, i want to add the search box at the end of mega menu, not as child item. i have this code in templates/ja_social/blocks/mainnav:
[PHP]
?>
<?php $this->genBlockBegin ($block) ?>
<?php if (($jamenu = $this->loadMenu())) $jamenu->genMenu (); ?>
<?php $this->genBlockEnd ($block) ?>
<!– jdoc:include type=”menu” level=”0″ / –>
<?php if($this->countModules(‘search’)) : ?>
<div id=”ja-search”>
<jdoc:include type=”modules” name=”search” />
</div>
<?php endif; ?>
<?php if ($this->hasSubmenu() && ($jamenu = $this->loadMenu())) : ?>
<div id=”ja-subnav” class=”wrap”>
<div class=”main clearfix”>
<?php $jamenu->genMenu (1); ?>
<!– jdoc:include type=”menu” level=”1″ / –>
</div>
</div>
<?php endif;?>
<ul class=”no-display”>
<li><a href=”<?php echo $this->getCurrentURL();?>#ja-content” title=”<?php echo JText::_(“Skip to content”);?>”><?php echo JText::_(“Skip to content”);?></a></li>
</ul>[/PHP]
i working with RTL mode, the search box doesnt work at all.
thanks !