Hey there! I'm currently facing an issue with my Bootstrap navbar as the items inside are not lining up properly with the first item.
If you take a look at this screenshot here, you can see that the items on the right aren't aligned correctly with the logo and image.
Here's a snippet of the code:
<nav class="navbar navbar-expand-lg navbar-dark" style="background-color: rgb(0, 0, 0);">
<a class="navbar-brand" href="/">
<img class="ms-3" src="/static/img/AdiAvi.png" width="30" height="30" class="d-inline-block align-top" alt="">
AdiAvi
</a>
// More code here...
</nav>
I've attempted to apply the 'ms-3' class to all attributes because it worked for the logo. However, that didn't solve the alignment issue. Can someone provide some guidance or assistance in resolving this problem? Thanks!