Here is my current navbar:
<nav class="navbar navbar-inverse">
<div class="container">
<ul class="nav navbar-nav">
<li><a href="">page 1</a></li>
<li><a href="">page 2</a></li>
<li><a href="">page 3</a></li>
</ul>
</div>
</nav>
I am looking for a way to keep the navbar at the bottom of the page, even if there isn't enough content to push it down. The navbar-fixed-bottom
class doesn't work as it overlaps with the content when reaching the bottom. What would be the best way to achieve this?