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

Hola amigos estoy trabajando en querer mostrar mis noticias con imagenes en est tipo de forma:
http://img64.imageshack.us/img64/3865/mostrar.jpg

pense que era muy facil de hacer con tablas pero veo que no es asi, lo hice con tablas pero no me resulta como en la imagen de muestra, me sale asi:
http://img440.imageshack.us/img440/5218/mion.png

Este es mi codigo estuve buscando y creo que la mayoria maneja div con clases de css ?? espero alguna sugerencia o referencia para mi problemita.
Código HTML:
Ver original
  1. <style type="text/css">
  2. <!--
  3. .Estilo1 {color: #FF0000}
  4. .Estilo2 {font-family: "Times New Roman", Times, serif}
  5. -->
  6.  
  7.    
  8.    <table align="center"  border="0" width="750" >
  9.     <tr>
  10.     <td colspan="2" align="center" class="titulo"><?php echo $row['titulo'];?></td>
  11.     </tr>
  12.     <tr>
  13.     <td align="left"> <strong> <span class="Estilo2"><?php echo $row['fecha_publicacion'];?> </span></strong></td>
  14.     </tr>
  15.     <tr>
  16.    
  17.         <td >
  18.     <?php
  19.    
  20.          if (empty($row['foto'])){
  21.          ?>
  22.           <img align= "absmiddle" border="0" src="modulos/noticias/vistas/fotos/silueta.gif" width="200" height="150" align="left">
  23.          
  24.           <?php
  25.           } else{
  26.         ?>
  27.          <img align="absmiddle" border="0" src="modulos/noticias/vistas/fotos/<? echo strip_tags($row['foto']) ?>" width="200" height="150" align="left"> </td>
  28.         <?php }?>
  29.     </td>  
  30.    
  31.     <td align="justify" width="500" height="180"><?php echo $row['texto_completo']; ?></td>
  32.     </tr>
  33.    
  34.    
  35.     </tr>
  36.     </table>