I'm struggling with the code snippet below:
<div class="container-fluid big-logo bg-light" id="big-logo">
<nav class="navbar nav-pills flex-column justify-content-center flex-sm-row navbar-expand-lg navbar-light bg-white">
<a href="{% url 'home' %}" class="nav-item">
<img alt="logo" src="{% static 'img/fuck.jpg' %}" style="max-height:40px;">
</a>
<a href="{% url 'cart' %}" class="nav-item">
<div>
<img alt="cart" class="card-title" src="{% static 'img/cart.png' %}" style="max-height:30px;">
<span class='badge badge-warning' id='lblCartCount'> {{ obj }} </span>
<h6 class="card-subtitle text-muted">Cart</h6>
</div>
</a>
</nav>
</div>
Here is what the current result looks like compared to the expected result:
https://i.sstatic.net/Ql1r9.png
I've attempted several solutions but nothing seems to work. Any ideas on how I can achieve the desired outcome?