I use the default Twitter Bootstrap responsive navbar (without the logo and search), but I want the menu items to be spanned, occupying the full width of the menu bar.
Another solution: Media Queries that adjust menu padding for each item:
@media (max-width: 1200px) { .navbar .nav > li { padding: 0 4px 0 3px; } } @media (min-width: 1200px) { .navbar .nav > li { padding: 0 20px 0 20px; } }