I'm wondering how to create a Twitter Bootstrap navbar
that collapses items in that menu, one or two items at a time upon resizing the browser window.
Most navbars I've seen have collapsed the entire navbar into one drop-down; basically hiding everything on that navbar when the window is resized. But I need it to still reveal some menu items; so a partial collapse.
Here's an example of what I mean (menu below):
Home | About | Services | Order | Contact
When the browser window is resized from the right, what I want it to do is to put the last menu item (or two) into a drop-down so then it would look like this:
Home | About | Services | More
-> Order
-> Contact
'More' would need to automatically be created as a drop-down menu and it automatically list 'Order' and 'Contact' menu items in that drop-down menu. And as the window gets smaller more items in that nav bar would be added to that drop-down menu. And when the browser window is resized to full screen width, then the navbar goes back to normal. This is what is needed.
Of the many links I've looked at, here's a couple of links I've found (that does not knock the whole navbar into one drop-down menu) but still like all the others it does not do what I described:
What is to the best way to achieve what I need using any example above?