Many thanks for your support.I am a newbee to Django and Bootstrap.
When I downloaded a bootstrap template it came with a logo.png.If I point to this image with below code all works
<a href="#" class="navbar-brand">
<!-- Logo Image -->
<img src="{% static '/img/logo.png' %}" width="100" alt="" class="d-inline-block align-middle mr-2">
<!-- Logo Text -->
<span class="text-uppercase font-weight-bold">Brand Name</span>
</a>
However if I place a custom image(test.png) within the same folder? of logo.png and point to that.The site does not show the logo.
- I tried resizing test.png to same as logo.png
- I tried using other images on my system
- Only the default logo and images that comes with templates works.
What am i missing please? Please help me.