"Grid Column Re-ordering"
Bootstrap 3.2.0 Snippet by sharmabhi753

<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <div class="industry"> <div class="col-md-3"> <div class="industry-column"> <a><img src="http://placehold.it/300X300"> <h3>Industry name</h3> </a> </div> </div> <div class="col-md-3"> <div class="industry-column"> <a><img src="http://placehold.it/300X300"></a> </div> </div> <div class="col-md-3"> <div class="industry-column"> <a><img src="http://placehold.it/300X300"></a> </div> </div> <div class="col-md-3"> <div class="industry-column"> <a><img src="http://placehold.it/300X300"></a> </div> </div> </div> </div> </div>
industry{ position:relative; text-align:center; } .industry-column{ text-align:center; margin-top:25px; margin-bottom:25px; } .industry-column h3{ padding-left:15px; padding-right:15px; position: absolute; width: 100%; height: 100%; top: 0; line-height: 6.5; } .industry-column img{ width:200px; border-radius:100%; position:block; box-shadow: 2px 2px 10px #333; -webkit-filter: grayscale(00%); -moz-filter: grayscale(00%); -o-filter: grayscale(00%); -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; -ms-transition: all 1s ease; transition: all 1s ease; } .industry-column:hover img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }

Related: See More


Questions / Comments: