I\'m new on Bootstrap, and i want to create a navbar with some stuff (links, dropdown...) and a breadcrumb. But i have a problem with the display: block (i think...) when i put
A simple float: left will do the work (margins are here to for vertical alignment) :
float: left
.nav .breadcrumb { margin: 0 7px; } @media (min-width: 768px) { .nav .breadcrumb { float: left; margin: 7px 10px; } }
Updated fiddle (I also fixed your icon bug on mobile version)