I have a problem trying to put an image next to the other with Bootstrap:
<ul class="thumbnails">
<li class="span4">
<div class="thumbnail">
<a href="#" class="thumbnail inner-border">
<img class="foto" src="uploaded/<?= $linha->img_nome; ?>">
</a>
<h3>Descrição da imagem: <?= $linha->titulo ?></h3>
<p>Texto da pagina: <?= $linha->texto_da_imagem ?></p>
</div>
</li>
</ul>
I do not know why the image does not want to float, would it be the Bootstrap version?