Seeking guidance as a Bootstrap novice.
I can create a navigation bar with an image brand and nav-items, but I'm wondering if there's a proper way to position the brand above the expanded navigation without resorting to hacks?
This is what I am aiming for:
<nav class="mainNav navbar navbar-expand-md justify-content-center">
<a class="navbar-brand" href="#">
<img src="img/logo.png" alt="Logo" height="80px" width="auto">
</a>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</nav>