http://jsfiddle.net/Ty3ZT/4/
Is that what you mean?
If so, then there was only HTML for one line with left and right sections.
I added HTML for another line:
<section class="top-bar-section">
<ul class="left">
<li class="active"><a class="global-nav__link">Some</a></li>
<li class=""><a class="global-nav__link">Buttons</a></li>
<li class=""><a class="global-nav__link">Here</a></li>
<li class=""><a class="global-nav__link">Timeline</a></li>
<li class=""><a class="global-nav__link active">Contacts</a></li>
</ul>
</section>
Since the height was fixed at 45 pixels, I had to double it to add a background for the second line:
.top-bar {
height:90px;
line-height:90px;
}
source
share