I need to adjust the position of the logo in the navbar so that it is aligned with the far left of the screen. Currently, it is slightly off-center. I've experimented with various bootstrap classes along with the "navbar-brand" class, but haven't been successful in getting it to work. Any assistance would be greatly appreciated!
The portion of code I require help with is:
<a class="navbar-brand" href="index.html"><img src="img/logo.png" width="90" height="80" alt=""></a>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top py-lg-0">
<div class="container">
<a class="navbar-brand" href="index.html"><img src="img/logo.png" width="90" height="80" alt=""></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="products.html">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</div>
</nav>