I have a bootstrap navbar that is not opening on mobile. Not sure what the issue is.
here is a codepen
https://codepen.io/aaron4osu/pen/dyMRMmd
any ideas?
I have a bootstrap navbar that is not opening on mobile. Not sure what the issue is.
here is a codepen
https://codepen.io/aaron4osu/pen/dyMRMmd
any ideas?
Remove the collapse class from the nav
element as you already have that class on the parent. The parent opens but the nav
element is still hidden and thus doesn’t show.
It should be this:
<nav class="navbar-collapse">
thanks Paul!
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.