I am trying to resize an image using Bootstrap. I have a large enough logo for large screens and resolutions. Apparently, the image should change well in all resolutions (small and large resolutions). I used the Bootstraps.img revocation class to make images susceptible. As you can see, the image is clearly visible in high resolutions, but the image should become small in lower resolutions. The problem is that - the image does not get smaller at lower resolutions. Any help would be greatly appreciated.
<BODY>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header col-xs-3 col-md-3">
<a class="navbar-brand" href="#">
<img class="img-responsive" src="someimage.png">
</a>
</div>
<div class="col-xs-9 col-md-9">
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><img class="img-responsive" src="A1.png"></a></li>
<li><a href="#"><img class="img-responsive" src="A2.png"></a></li>
</ul>
</div>
</div>
</nav>
</BODY>
source
share