Bootstrap navbar issue – menu wont show on click

I have a problem with the navbar on the new site I’m working on. When I make a chrome window smaller as to have my menu turn into a navbar, I cant get the navbar to work. The menus wont show up on click.
I’m working on changing a html5 template into a WordPress template. The navbar is working on the html5 template, so I have done something to scew up the navbar when coding for WP.

Can it be script related or css related? The actual code has not been change.

Read More

Anyone got any ideas?

Related posts

Leave a Reply

1 comment

  1. Please make sure you added this (.js) in correct order and you point right to the folder that you put them in:

    1- jquery library

    2- js for bootstrap 3

    example:

    <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
    <script src="bootstrap.min.js"></script>
    

    you can check to see if the files is loaded or not ( e.g: In Google Chrome ) :

    • Right click in your page and select ( Inspect elements )
    • Chose ( Resources )
    • in the left panel you will see folder icon with name depend on your folder name open it and lock for ( Scripts )
    • under this menu you will see the loaded .js files for your site, make sure that ( jquery library and bootstrap js ) is loaded.

    hope this will help you