How would I go about removing the drop down menu used for the main navigation? It is of a simple page that does not require a menu.
Thanks
How would I go about removing the drop down menu used for the main navigation? It is of a simple page that does not require a menu.
Thanks
Hey,
I think the easiest way is to edit angular/js/avia.js. Open up this fileand replace:
$('#mobileMenu_'+$this.attr('id')).show();
with:
$('#mobileMenu_'+$this.attr('id')).hide();Perfect. Thanks for the speedy fix.
Glad that I could help you :)
You must log in to post.