Strange...
Could I ask you to try replacing the following in your templates scripts.php (../templates/j51_metropolis/php/scripts.php)..
<!-- Hornav Mobile (converts menu into select list) -->
<script type="text/javascript" src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/mobile/selectnav.min.js" charset="utf-8"></script>
<script type="text/javascript">selectnav('mobile');</script>
<script type="text/javascript" >
window.addEvent('domready', function() {
selectnav('mobile', {
label: '--- Main Menu ---',
nested: true,
indent: '-',
});
})
</script>
With...
<!-- Hornav Mobile (converts menu into select list) -->
<script type="text/javascript" src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/mobile/selectnav.min.js" charset="utf-8"></script>
<script type="text/javascript">selectnav('mobile');</script>
<script type="text/javascript" >
window.addEvent('domready', function() {
selectnav('mobile', {
label: '--- Main Menu ---',
nested: true,
indent: '-',
autoselect: false
});
})
</script>
Ciarán