Currently, I have a thumbnail gallery set up with different size .img-circles
on .img-thumbnails
for the lg, md, and xs widths in Bootstrap. However, I am facing an issue where I need to remove the .img-circle
class only for the sm screen width while keeping the .img-thumbnail
class intact.
Below is a snippet of the HTML code:
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-6 thumb">
<a class="thumbnail" href="#">
<img src="img/dirk_avatar_thmb.png" class="img-responsive img-circle">
</a>
</div>
</div>
I've attempted using media queries without any success so far, as I'm still fairly new to it. Do you have any advice or suggestions?