I'm having a problem with thumbnails not collapsing correctly, and the code: https://gist.github.com/4676514
Not sure why that 5th thumbnail is collpasing to the right, and why it wouldn't start a new row?
I'm having a problem with thumbnails not collapsing correctly, and the code: https://gist.github.com/4676514
Not sure why that 5th thumbnail is collpasing to the right, and why it wouldn't start a new row?
Maybe try replicating the layout that they use in the Bootstrap examples and see if that works?
http://twitter.github.com/bootstrap/components.html#thumbnails
<div class="row">
<ul class="thumbnails">
<li class="span3">
<img src="">
<div class="caption">TEXT</div>
</li>
<li class="span3">
<img src="">
<div class="caption">TEXT</div>
</li>
<li class="span3">
<img src="">
<div class="caption">TEXT</div>
</li>
<li class="span3">
<img src="">
<div class="caption">TEXT</div>
</li>
</ul>
</div>
Its because you are trying to load all the image tiles under one <div class="row">
Rather than doing that way create a separate row for each of the image rows.
First row:
<div class ="row">
<div class="span3">image1</div>
<div class="span3">image2</div>
<div class="span3">image3</div>
</div>
For 2nd row:
<div class ="row">
<div class="span3">image4</div>
<div class="span3">image5</div>
<div class="span3">image6</div>
</div>
Hope it helps