prueba asi y me cuentas:
Código PHP:
Ver original<style>
#fotos{
display:block;
position:relative;
float:left;
margin-left:10px;
}
</style>
<div class="portfolio-thumb">
<?php
if($numprods == 0){
echo "<span style='font-weight: bold'>NO HAY PROYECTOS</span>";
}
else{
while(/*aqui debes cambiar poe l nombre de tu consulta>>*/$numprods->fetch_array())
{
echo "<div id='fotos'>";
echo "<figure class='frame2'>";
echo "<img src='catalogo/".$imagen."' alt=''>";
echo "<h4><a data-rel='lightbox' href='catalogo/".$imagen."'>".$descrip."</a></h4>";
echo "</figure>";
echo "</div>";
}
}
?>
</div>