For my project, I need to incorporate two images: one is the company's logo and the other is the app logo.
To achieve this, I have set up a navigation bar and my plan is to place the logos on opposite sides to visualize the overall look.
Unfortunately, I am facing difficulty in adjusting the position of the images within the navbar. Is there a way to accomplish this?
I attempted using text-right, but it did not yield the desired results.
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="#">
<div class="row">
<div class="col-md-6 text-center">
<img src="~/Content/img/logo_1_v_.png" width="30" alt="">
</div>
<div class="col-md-6 text-right ">
<img src="~/Content/img/logo_2_v_.png" width="30" alt="">
</div>
</div>
</a>
</nav>