Ahem, this is easy to do with pure CSS, you don’t even need Bootstrap, nor its CSS classes
HTML:
<ul class="navigation"> <li><a href="#">Home</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> </ul>
CSS:
.navigation li { display: inline; padding-left: 5px; padding-right: 5px; }
Of course, you still have to style the links to remove the text, etc.
Edit:
.navbar-inner { background: none !important; border: 0 !important; box-shadow: none !important; -webkit-box-shadow: none !important; } .navbar-inverse .nav .active > a { background: 0 !important; color: #333 !important; box-shadow: none !important; -webkit-box-shadow: none !important; } .navbar-inverse .nav > li > a { color: #333 !important; text-shadow: none !important; } .navbar-inverse .nav > li > a:hover { color: #333 !important; }
Demo: http://codepen.io/anon/pen/vJsfz
I just made a few simple reset lines with CSS to remove every color, border, and shadow (at least for Webkit browsers). You may have to change it a bit.
source share