I am trying to create a navbar that looks like the following design:
+--------------------------------------------+
+ navbar-brand img | | | Link 1 |
+ navbar-brand img | Home | About | Link 2 |
+ navbar-brand img | | | Link 3 |
+--------------------------------------------+
In addition, the "Home" and "About" links should be slightly bigger than the three links on the right. Currently, I have adjusted the line-heights and heights of .navbar-nav li a
to increase the height of the navbar.
This is the HTML code I am currently using: Bootply Demo
<div id="header" class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="row">
<div class="navbar-brand">
<img src="img/logo.jpg"/>
</div>
<button type="button" class="navbar-toggle toggleButton" data-toggle="collapse" data-target="#navbarmenu">
<i class="fa fa-bars fa-2x"></i>
</button>
<div class="collapse navbar-collapse" id="navbarmenu">
<ul class="nav navbar-nav">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li>
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</li>
</ul>
</div>
</div>
</div>
</div>
Can someone advise me on the best approach to achieve this design? Appreciate the help!