the10thplanet
the10thplanet

Reputation: 27

How can I auto-expand my menu on responsive version of site (twitter bootstrap)

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

Answers (2)

Dion
Dion

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

vdwijngaert
vdwijngaert

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

Related Questions