Bootstap menu seems to go away on smaller screens

why does the hamburger button (when clicked on) not show the menu on smaller screens?

http://shores-rentals.com/alma/index2.html
(im using bootstrap)

Hi,

I don’t know if its anything do do with it but you have an error here:


    <script>
	$('#slider').carousel({
		interval: 5000,
		cycle: true;
	});
	</script>


It should be:


    <script>
	$('#slider').carousel({
		interval: 5000,
	[B]	cycle: true[/B]
	});
	</script>


(removed the semi colon).

Also shouldn’t the data-target point towards #collapse as you don’t have #navbar?


 <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">

I’ll have a better look later when I get back as I am just nipping out.

Yes I was right and you need to change the data target to #collapse:


<button type="button" class="navbar-toggle" data-toggle="collapse" [B]data-target="#collapse"[/B]>

thanks