Ver Mensaje Individual
  #7 (permalink)  
Antiguo 18/10/2010, 19:04
Dinvaders
 
Fecha de Ingreso: octubre-2010
Ubicación: Uruguay
Mensajes: 12
Antigüedad: 13 años, 6 meses
Puntos: 0
Respuesta: Modificar Portada

Me parece que lo mas facil que puedes hacer es esto:

Código PHP:
Ver original
  1. <div id="posts">
  2. <?php query_posts($query_string . 'cat=1'); while ( have_posts() ) { the_post();?>
  3. <li>
  4. <h2><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title();?></a></h2>
  5. <?php the_excerpt();?>
  6. </li>
  7. <?php } ;?>
  8. </div>

y en el css:

Código CSS:
Ver original
  1. #post {width: 100&#37; ;}
  2. #post li {width: 33%; float: left; list-style: none;}

Obviamente lo vas a tener que mejorar :D