Title: Add Lines between posts
Last modified: August 21, 2016

---

# Add Lines between posts

 *  Resolved [jtcloans1](https://wordpress.org/support/users/jtcloans1/)
 * (@jtcloans1)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/add-lines-between-posts/)
 * Is it possible to add any spacing between posts on single page?
    Or maybe a horizontal
   line to break up the continues posts?
 * [http://wordpress.org/plugins/posts-in-page/](http://wordpress.org/plugins/posts-in-page/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [jpope2012](https://wordpress.org/support/users/jpope2012/)
 * (@jpope2012)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/add-lines-between-posts/#post-4228177)
 * I have this same question – if anyone has an answer, it would be much appreciated.
 * Right now, I’ve simply put a post with a blank title and containing only an image,
   then inserted the post so that it comes between the posts I want to break up.
   Does that make any sense? So you get:
 * [Post]
    [Image] [Post]
 * And that looks okay for now. But if we can get a real fix, that would be awesome.
 * Edit: Another option is to go into the code to remove the “Read More” button.
   To do that, go into “posts_loop_template.php” and change the line that says:
 * <?php the_excerpt(); ?>
 * to: <?php the_content(); ?>
 * Then make sure at the end of each post you put an extra line or two of empty 
   space. By removing the “Read More” button and including the extra space, you’ll
   have a nice gap between posts. See:
 * [http://groups.northwestern.edu/parc/Wordpresss](http://groups.northwestern.edu/parc/Wordpresss)
 * But again, this is really a temporary solution.
 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/add-lines-between-posts/#post-4228178)
 * it is possibly do-able with CSS;
 * please post a live link to your siteto get support with this kind of formatting–
   unless the plugin’s author has some other suggestions.
 * [@jpope2012](https://wordpress.org/support/users/jpope2012/)
    generally, you 
   are encouraged to post your own topic as the details of your site might differ–
   [http://codex.wordpress.org/Forum_Welcome#Where_To_Post](http://codex.wordpress.org/Forum_Welcome#Where_To_Post)
 *  [envision_beats](https://wordpress.org/support/users/envision_beats/)
 * (@envision_beats)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/add-lines-between-posts/#post-4228224)
 * I just entered a hr tag into the php file for the plugin.
 * > ‘</span>’ ); ?>
   >  <hr /> </div> </div> <!– // End of Post Wrap –>
 *  [mutu](https://wordpress.org/support/users/mutu/)
 * (@mutu)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/add-lines-between-posts/#post-4228231)
 * I did it this way, I gave it a bottom margin so it balanced with the plugin.
 * Add this code to css
 *     ```
       .divider-pp {
         width: 90%;
         margin-bottom:20px;
         height: 1px;
         background-color: #999;
       }
       ```
   
 * and the div call for the class divider-pp in the template here (your edited version
   of posts_loop_template in your theme):
 *     ```
       <div class="post hentry ivycat-post">
       	<div class="divider-pp"></div>
       ```
   
 * and here:
 *     ```
       </div>
       </div>
       		<div class="divider-pp"></div>
       <!-- // End of Post Wrap -->
       ```
   
 *  That will display a divider top and bottom of each post which means a double
   divider between posts, looks great.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Add Lines between posts’ is closed to new replies.

 * ![](https://ps.w.org/posts-in-page/assets/icon-256x256.png?rev=1596190)
 * [Posts in Page](https://wordpress.org/plugins/posts-in-page/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/posts-in-page/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/posts-in-page/)
 * [Active Topics](https://wordpress.org/support/plugin/posts-in-page/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/posts-in-page/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/posts-in-page/reviews/)

 * 4 replies
 * 5 participants
 * Last reply from: [mutu](https://wordpress.org/support/users/mutu/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/add-lines-between-posts/#post-4228231)
 * Status: resolved