I am trying to use the bootswatch journal template: https://bootswatch.com/journal/
So I download the .css file and serve the html file using this css.. but this always ends up with a red and white navbar - which is not what I want.
I am looking for the black and white navbar as show in the page itself.
How do I go about achieving this?
thanks.
The HTML code is like so:
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<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="{% url 'home' %}">title here</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="">Add item</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
Replace navbar-inverse in the following code with navbar-default
<nav class="navbar navbar-inverse navbar-fixed-top">