My problem lies in creating a responsive navbar using bootstrap. On smaller screens, the toggler in the navbar ends up overlapping the logo instead of aligning to the left. I've attempted to add containers around the elements to fix this issue but to no avail.
Here is the code snippet:
<div class="container">
<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>Menu
</button>
<img src="images/irgLogo.jpg" class="mt-1 ml-4 img-fluid">
<div class="collapse navbar-collapse" id="navbarResponsive">
/* Navbar links go here */
</div>
</div>
You can visit //candlewoodlakelifestyle.com/irg to see the problem in action. Any help or advice on how to position the toggler correctly would be greatly appreciated!