Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/07/2008, 20:28
Avatar de EmpireFX
EmpireFX
 
Fecha de Ingreso: marzo-2008
Ubicación: in da house
Mensajes: 60
Antigüedad: 16 años, 2 meses
Puntos: 3
Respuesta: Ayuda con WORDPRESS, alguien que sepa, un problema

Primero en el codigo que posteaste, dejalo asi:
Cita:
<?php get_header(); ?>
<div class="content-left">
<?

if (have_posts()) {
while (have_posts()) {

the_post();
?>
<div class="post">
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<div class="posted">publicado por <?php the_author(); ?> el <?php the_time('j F, Y ') ?></div>
<?php the_content('Leer el resto de esta entrada'); ?>
<div class="comments"> <?php comments_popup_link('No hay comentarios', '1 comentario', '% comentarios'); ?></div></div><br clear="all" /><?php

} ?>
<div class="navigation">
<div style="float:left"><?php next_posts_link('&larr; Entradas anteriores') ?></div>
<div style="float:right"><?php previous_posts_link('Entradas siguientes &rarr;') ?></div>
</div>
</div>
<?php



} else {

?>
<div class="post">
<h1><a href="/">No se ha encontrado</a></h1>
<p>Lo siento, lo que buscas no está aquí.</p>
</div><?php
}
?>
<?php get_footer(); ?>
Luego vas a tu css
Y modificas solo el width a 515px:
Cita:
.content-left {

width: 515px;

float: left;

border-right: 1px dotted #B6B6B6;

}
Y bueno despues si queres sacar la linea de puntos, elimina:
Cita:
border-right: 1px dotted #B6B6B6;
Saludos