I'm struggling to center my navbar. My goal is to have the entire navbar consistently at the bottom of the screen, with the logo in the exact middle and two buttons on each side that stretch to the edges.
Below is the current code I'm using:
.navigation {
font-size: 40px;
font-family: Roboto-Light;
color: black;
}
<nav class="navbar">
<div class="container">
<div class="navbar-nav nav-justified">
<a class="navigation videoHub nav-item nav-link" href="#">VIDEO HUB</a>
<a class="navigation aboutSean nav-item nav-link" href="#">ABOUT SEAN</a>
<a class="navigation foleyLogo nav-item nav-link" href="#">
<img src="../Foley Performance Video Website Layout/FoleyPerformanceLogo.jpg" alt="Foley Logo" style="width:200px;" />
</a>
<a class="navigation schedule nav-item nav-link" href="#">SCHEDULE</a>
<a class="navigation askSean nav-item nav-link" href="#">ASK SEAN</a>
</div>
</div>
</nav>
I thought that with the new Bootstrap 4, using `nav-justified` or `nav-fill` would automatically align everything as needed, as shown in tutorial videos.