Bootstrap3 navigation bar, hamburger menu not interactive

Permalink
I've created a BS3 navigation bar in a HTML block.

http://lowcosttest2.co.uk/

It's responsive, i.e. the menu items collapse into a single "hamburger menu"

But clicking on the menu has no effect. It does not show the menu items.

Like here... http://www.bootply.com/M1vzpi0K8N#...

What am, I doing wrong? Why doesn't it work from within Concrete?

Conkreet
 
hutman replied on at Permalink Reply
hutman
You're missing the bootstrap-theme.min.css
Conkreet replied on at Permalink Reply
Conkreet
It is actually there. It's imported in one of the css files.

@import url('http://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css');
Conkreet replied on at Permalink Reply
Conkreet
I needed to include the BS3 js script too :)

It works now, thanks :)
Conkreet replied on at Permalink Reply
Conkreet
Well.....

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

Including the bootstrap.min.js file seems to have broken editing of the site.

I can't go in and edit the padding, for example, as none of the options are clickable.
hutman replied on at Permalink Reply
hutman
That's because the core already includes bootstrap when you're logged in. You should check out the docs on assets.
Conkreet replied on at Permalink Reply
Conkreet
So only include it when not logged in?
Conkreet replied on at Permalink Reply
Conkreet
That appears to work. :)