Bueno este es mi problema, voy a explicar con un grafico primero...
Los productos se muestran asi actualmente:
![](http://img522.imageshack.us/img522/5520/malm.jpg)
Yo quiero que los productos se muestren asi:
![](http://img30.imageshack.us/img30/2725/biens.jpg)
Este es mi codigo, haber si me dan una mano porfavor :D
Código PHP:
Ver original
<link href="css/autoflow.css" rel="stylesheet" type="text/css" /> <table width="100%"> <tr> <td width="2%"><img src="img/btn_title.jpg" alt="" width="30" height="30" /></td> <td width="98%" valign="middle"><span style="font-size: 14px; font-weight: bold;">Productos:</span></td> </tr> <tr> <td colspan="2">En esta seccion usted puede ver los articulos que tenemos disponible, estos productos se iran actualizando constantemente...<span style="text-align: justify"></span></td> </tr> </table> <hr /> <?php include("db.php"); $link = Conectarse(); $imagen= "admin/productos/files/"; //Traer los articulos de mierda $query = mysql_query("SELECT * from catalogo order by id DESC limit 5",$link) or die(mysql_error()); { ?> <table width="420" border="0" cellpadding="5" cellspacing="5" id="tabla" align="center" valign="middle"> <tr><td width="15%" bgcolor="#1779A8" align="center"><font color="white"></font><font color="white"><?php echo $mos['fecha']; ?></font></td> <td width="85%" bgcolor="#1FA2E0" colspan="2" align="right"><b><font color="white"><?php echo $mos['titulo']; ?></font></b></td></tr> <tr><td align="center" valign="middle"><b><font color="white"><img src="<?php echo $imagen.$mos['img'];?>" width="70" height="70" \></font></b></td> <td align="justify" colspan="3" bgcolor="#DBF2FC"><div class="itemsVenta" ><?php echo $mos['descripccion']; ?></div></td></tr> <tr><td bgcolor="#1779A8" align="center"><font color="white" size="2"><b>Precio:</b></font></td><td align="center"><font size="2"> S/ <?php echo $mos['precio']; ?></font></td><td width="30%" align="center"><img src="img/comprar.jpg"></td></tr></table><br> <?php } ?>