Reputation: 27
My twitter bootstrap website is www.airterrariums.com.au
How can I have the menu auto-expand instead of collapsing when in responsive mode.
Upvotes: 0
Views: 2448
Reputation: 100
According to the Bootstrap 4 site you add the show
class to the nav-bar.
This will auto expand your navigation bar.
Example:
<div class="collapse show navbar-collapse">
Upvotes: 0
Reputation: 1555
Just add "in" to the class list of this div:
<div class="nav-collapse collapse">
So that it becomes:
<div class="nav-collapse collapse in">
Upvotes: 2