-1

Please watch the video as I go through the problem I’m having. The navbar won’t collapse when I select the link in mobile view.

Video:https://www.youtube.com/watch?v=2dBpcFMjqY0

1 Answers1

1

Looking at the answers in this question, and playing about with your fiddle, the following seems to fix the problem:

<li class="current"><a href="#home" data-toggle="collapse" data-target=".navbar-collapse.in">Home </a></li>
<li><a href="#about" data-toggle="collapse" data-target=".navbar-collapse.in">About</a></li>
<li><a href="#contact" data-toggle="collapse" data-target=".navbar-collapse.in">Contact</a></li>

See the updated fiddle here.

Community
  • 1
  • 1
Ken Y-N
  • 14,644
  • 21
  • 71
  • 114