HI Joomlart,
I have a problem with the Mega Menu but just on the home page.
The menu is not align with the main navigation (as show on the picture)
Could you help?
Thanks,
Allain
4 answers
Hi alagadic,
You can try as following
Open the file of app\design\frontend\default\jm_nerostemplate\page \html\head.phtml, there you look for
PHP Code:
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/jquery/jquery.js') ?>"></script>
Change it to
PHP Code:
<?php if(!defined('JM_ADD_JQUERY')){?>
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/jquery/jquery.js') ?>"></script>
<?php define('JM_ADD_JQUERY', true); ?>
i hope this change helps, if it does not, give me the FTP info for further checking.
Hi Sherlock,
This is not working. I receive this error message on home page:
Parse error: syntax error, unexpected end of file in /home/toogoodc/public_html/app/design/frontend/default/jm_neros/template/page/html/head.phtml on line 95
Sorry alagadic, my mistake, the new code should be
PHP Code:
<?php if(!defined('JM_ADD_JQUERY')): ?>
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/jquery/jquery.js') ?>"></script>
<?php define('JM_ADD_JQUERY', true); ?>
<?php endif; ?>
Hi Sherlock,
Working fine!
Thanks
Allain
This question is now closed