I would like to replicate the following image:
using a navbar-fixed-top
with Bootstrap
. Currently, I have added the following custom CSS
:
navbar-fixed-top.css
.navbar {
background-color: #8CB5A0;
background-image: none;
}
Here is the Bootstrap code for the navbar:
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only"> Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Project Name</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active">
<a href="#">Home</a>
</li>
<li>
<a href="#">About</a>
</li>
</ul>
</div>
</div>
</div>
And this is the CSS:
But how can I add the double red border, with two different shades of red, or should I directly add the image as a background?