Separar posts con una linea sombreada en un blog

  • Autor Autor FabricioV
  • Fecha de inicio Fecha de inicio
FabricioV

FabricioV

Ni
Verificación en dos pasos activada
Quisiera poner una linea sombreada o algo que separe los posts en mi blog, no me acuerdo como es el codigo ni tampoco se donde hubicarlo, busque en google y no encontre nada por ahi arriba.

Les dejo el index asi me dicen donde ponerlo.

Saludos.

Es para un blog que estoy preparando este es el theme: http://newwpthemes.com/livedemo/?wptheme=ProStart

<?php get_header(); ?>
<div class="span-24" id="contentwrap">
<div class="span-16">
<div id="contenthome">
<?php if(is_home()) { include (TEMPLATEPATH . '/featured.php'); } ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>

<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="postdate">Posted by <strong><?php the_author() ?></strong> on <?php the_time('F jS, Y') ?> <?php if (current_user_can('edit_post', $post->ID)) { ?> | <?php edit_post_link('Edit', '', ''); } ?></div>

<div class="entry">
<?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(200,160), array("class" => "alignleft post_thumbnail")); } ?>
<?php the_content('Read more &raquo;'); ?>
</div>
</div><!--/post-<?php the_ID(); ?>-->

<?php endwhile; ?>
<div class="navigation">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
<?php } ?>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>

<?php endif; ?>
</div>
</div>

<?php get_sidebars(); ?>
</div>
<?php get_footer(); ?>
 
arriba del titulo bro, siempre arriba del titulo... me voy a dormir, estoy muerto.
 
Linea divisoria es <hr> te da una linea esteticamente fea pero se arregla con el css
HTML:
hr {
        border: 0;
        width: 80%;
      }
Lo pondria entre:
PHP:
<?php the_content('Read more &raquo;'); ?>
                            </div>
<hr>
                        </div>

Aunque tambien podria quedar un border-bottom
 
Listo, gracias. Intente modificarla en la hoja de estilos pero no funciono, igual algo es algo. Mañana lo presento al blog.
 
Atrás
Arriba