I was able to align my image with this topic Align text after image , but the image is on top of some other content on the page, how could I fix it?
My div:
<div width="10%" class="areaImagem">
<?php
$id = $PDO->lastInsertId();
echo "<img src='imagens/". $id ."/".$user['foto']."' alt='Foto' width='30%' height='30%'/>"; ?>
</div>
<div class="areaTexto">
<b>Título:</b> <?php echo $user['titulo'] ?> <br />
</div>
CSS:
.areaImagem{
float:left;
margin-top:10px;
}
.areaImagem img{
width:400px;
}
.areaTexto{
float:left;
max-width:500px;
margin-left:10px;
}