Hello there,
Let me explain what I'm attempting to achieve:
I am looking to center the content (image + caption) of each thumbnail. The image should be span3 and the caption should be span4.
However, here lies my issue:
I can either get the content centered or have the caption float next to the image; But I cannot seem to achieve both simultaneously.
Since I just started using Bootstrap this morning, it's possible that I am misusing some classes.
This is the code I am currently working with:
<ul class="thumbnails">
<li class="span12">
<div class="thumbnail span12">
<img class="span3" data-src="holder.js/300x200" alt="300x200">
<div class="caption span4">
<h3>My Title</h3>
<p>blabla</p>
</div>
</div>
</li>
</ul>