hot to delete Basic bootstrap theme dropdown menu

Permalink
Hello guys.
My website is still in progress, and i have a problem with my dropdown menu.

I just want to delete it. it only shows when i get on specific few pages(for now) i just want to delete it "globaly" because i dont like it.

link to my page where dropdown menu showshttp://e-spot.iserbia.org/index.php/igre/dota-2...

This is my first forum post. I hope you guys will help me.
Thank you!

 
hutman replied on at Permalink Reply
hutman
Hello,

Are you using a purchased theme? If so what theme is it?

This will either be something you can delete in the Stacks area, or you will need to go into the code of the package's Theme.
espot replied on at Permalink Reply
Im using basic bootstrap. (i got it free of charge)

got it fromhttp://goradiantweb.com/blog/design/free-basic-bootstrap-theme/...
hutman replied on at Permalink Reply
hutman
If you open up the /packages/basic_bootstrap/themes/basic_bootstrap/elements/header.php around line 50 you will see this code

$a = new GlobalArea('Header Nav');
$a->setBlockLimit(1);
$a->display();


You can remove that to stop this area from displaying on the page. Otherwise you can replace this code with code for just a plain area on the page, but then you would have to update each page individually to add the navigation back in later

$a = new Area('Header Nav');
$a->display($c);


Or, if you are just trying to get rid of the dropdown functionality you can go in to /packages/basic_bootstrap/themes/basic_bootstrap/assets/js/application.js and either edit the mainmenu function or stop it from being called on document ready by removing line 70