Currently, the only method I have found to maintain a transparent navbar is by setting it to fixed-top
like this:
<nav class="navbar fixed-top navbar-inverse">
<!-- more html -->
</nav>
This can be seen here.
I am looking for a way to keep my navbar at the top of the page while also keeping it transparent. Removing the fixed-top
class causes the transparency to disappear and pushes my landing page content below the navbar (when it should overlap).
Is there a solution to achieve both a fixed position and transparency for the navbar?