Could someone assist me with arranging Bootstrap thumbnails side by side instead of vertically stacked? Any advice is appreciated!
Here is the current code snippet for the two thumbnails:
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="photos/square.png" alt="...">
<div class="caption">
<h3 style="font-size:16px;position:relative;left:35px;top:-27px;font-family:Myriad Pro;color:white;">Software Name</h3>
<p>...</p>
<p><a href="#" class="btn btn-primary btn-ok" role="button">Read More</a></p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="photos/square.png" alt="...">
<div class="caption">
<h3 style="font-size:16px;position:relative;left:35px;top:-27px;font-family:Myriad Pro;color:white;">Software Name</h3>
<p>...</p>
<p><a href="#" class="btn btn-primary btn-ok" role="button">Read More</a></p>
</div>
</div>
</div>
</div>
Click here to view a screenshot of the current layout.