[Solved] how to make responsive gallery [closed]


If you are using bootstrap then copy paste this code:

<div class="row">

  <div class="col-xs-6 col-md-3"><!--you can add more section like this-->
    <a href="#" class="thumbnail">
    <img src="..." alt="...">
    </a>
  </div>

</div>

This will work definitely for you.

6

solved how to make responsive gallery [closed]