Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/05/2010, 10:44
vili86
 
Fecha de Ingreso: septiembre-2009
Mensajes: 281
Antigüedad: 14 años, 6 meses
Puntos: 0
Pregunta Respuesta: Posicion de imagen tipo deportivo ?

Intento hacerlo asi pero todavia no puedo conseguirlo ?
Código HTML:
Ver original
  1. <table align="center"  border="1" width="750" >
  2.    <tr>
  3.    <td>
  4.    <div align="center" class="titulo"><?php echo $row['titulo'];?></div>
  5.    <div align="left" class="Estilo2"><strong><?php echo $row['fecha_publicacion'];?></strong></div>
  6.    <div style=" text-align:justify">
  7.  
  8.     <?php
  9.    
  10.          if (empty($row['foto'])){
  11.          ?>
  12.           <img align= "absmiddle" border="0" src="modulos/noticias/vistas/fotos/silueta.gif" width="200" height="150" align="left">
  13.          
  14.           <?php
  15.           } else{
  16.         ?>
  17.          <img align="absmiddle" style="margin-right:10px; float::left;" border="0" " src="modulos/noticias/vistas/fotos/<? echo strip_tags($row['foto']) ?>" width="350" height="290" align="left">
  18.       <?php }?>
  19.       <?php  echo $row['texto_completo']; ?>
  20.    
  21.    
  22.    
  23.    
  24.    </div>      
  25.    
  26.    </td>
  27.     </tr>
  28.     </table>