See the HTML code for the navigation bar below.
<header>
<div class="navbar navbar-fixed-top center">
<div class="navbar-inner">
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="#">item 1</a><li>
<li><a href="#">item 2</a><li>
<li><a href="#">item 3</a><li>
<li class="active"><a href="#">item 4</a><li>
</ul>
<ul class="brand">
<li><p>logo text</p></li>
</ul>
<ul class="budget">
<li><p>item on right</p></li>
</ul>
</div>
</div>
</div>
</header>
I used the following CSS to center the brand logo. This works fine.
.navbar .brand {
margin-left: auto;
margin-right: auto;
width: 100px;
float: none;
list-style: none;}
.center .navbar-inner {
text-align:center;}
I got stuck on how to make the item on the right (with the class "budget") move towards the right. I already tried using the navbar-right bootstrap class but this didn't work. I also tried to adjust the CSS I used to center the logo but somehow the item I want to align right keeps showing up centered and below the navigation bar. Somebody can tell me how I can display this item inline on the right?
Thanks in advance,
Stijn