1
I’m having a problem trying to put one image next to another 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 be the version of Bootstrap?
You have placed all images within the same <ul tag>?
– Gabriel Tadra Mainginski
yes they are the same then they come dynamically, this code is right?
– André Martins
Could provide a functional example of the problem using jsfiddle or stacksnippets (including css and html)?
– Guilherme Nascimento