Just started learning Bootstrap and following a tutorial on Lynda.com about customizing the navbar. However, despite following the tutorial step by step, my navbar is not behaving as expected - it's stacking vertically on all device sizes instead of just md and under. I'm having trouble figuring out what went wrong.
You can view the page here
Here is the specific code snippet:
<div class="navmenu">
<nav class="navbar navbar-toggleable-sm">
<div class="navbar-nav">
<a class="nav-item nav-link" href="#">One</a>
<a class="nav-item nav-link" href="#">Two</a>
<a class="nav-item nav-link" href="#">Three</a>
<a class="nav-item nav-link" href="#">Four</a>
<a class="nav-item nav-link" href="#">Five</a>
<a class="nav-item nav-link" href="#">Six</a>
</div><!--navbar-nav-->
</nav><!--nav-->
</div><!--navmenu-->
Any assistance would be greatly appreciated! Thank you