Viewing 3 replies - 1 through 3 (of 3 total)
  • <hr />

    Goes in your theme, inside the loop, wherever you need it.

    Thread Starter antoniop

    (@antoniop)

    Where is the loop located? i.e. what file do I need to edit

    The Loop is between

    <?php while (have_posts()) : the_post(); ?>

    and

    <?php endwhile; ?>

    and if inside that you have a <div> and a </div>, try it anywhere inside there until it’s the way you like it.

    You might need to change index.php, or category.php, or archive.php… depends on what you already have in your theme directory.

    If you know CSS, another way would be to create a bottom border on that same DIV element. You’d do that in style.css.

    div.post {
       border-bottom: 1px black solid;
    }

    (PS you’re in the Plugins and Hacks forum… this type of question probably belongs in the Theme forum where folks think about this type of stuff in their sleep and may know a few more ways to do it. 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Creating horizontal lines between posts?’ is closed to new replies.