I am facing an issue with the placement of my logo. The code snippet below shows how it currently looks:
<nav class="navbar navbar-fixed-top navbar-light bg-primary">
<div class="container-fluid">
<img class="navbar-brand" src="logo.png" alt="logo">
<ul class="nav navbar-nav">
<li class="nav-item"><a href="#" class="nav-link">START</a></li>
...
</ul>
</div>
</nav>
There seems to be some padding on the left, causing the logo to not align perfectly with the edge as shown in the image https://i.sstatic.net/L5dkl.png.
My goal is to have the circular logo positioned precisely at the edge to create the illusion of a real circle extending outside the browser window. I attempted using a negative margin on the left side, but it did not solve the issue, resulting in the image appearing incorrectly aligned like in the following image https://i.sstatic.net/001oS.png.
Can anyone provide guidance on how to resolve this issue?