user1431072
user1431072

Reputation: 1442

How to exclude menu items on collapse in bootstrap nav

How do I exclude menu items from my nav when collapse takes place?

To be more explicit, I have some list items as such:

<li>|</li>

Used as a spacer between other menu items. The pipes inside of the "li" tags are showing as items in the collapsed nav menu, and I want to ignore these on collapse.

Is there a property available that I can add to the element to make bootstrap completely ignore adding my "spacers" to the nav list of menu items?

Upvotes: 0

Views: 1286

Answers (1)

Adam Buchanan Smith
Adam Buchanan Smith

Reputation: 9439

Yes, refer here http://getbootstrap.com/css/#responsive-utilities-classes for the available classes.

For your example, you would use something like this:

<li class="hidden-xs">|</li>

Upvotes: 2

Related Questions