Title: Split posts
Last modified: August 19, 2016

---

# Split posts

 *  Resolved [hesleskaug](https://wordpress.org/support/users/hesleskaug/)
 * (@hesleskaug)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/split-posts/)
 * This is a newbie question… sorry
 * I want to split up each post with a line (doted)
 * How and where do I do that?
 * It’s in the css file right?
 * Thanks

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

 *  [Roy](https://wordpress.org/support/users/gangleri/)
 * (@gangleri)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/split-posts/#post-860920)
 * Do you mean a “read more” split?
 *  Thread Starter [hesleskaug](https://wordpress.org/support/users/hesleskaug/)
 * (@hesleskaug)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/split-posts/#post-860922)
 * No. A line that splits each post
 * **News #1**
    blablab bla blablabl blablalblbllabllabl
 * ablabllbba
    Read more
 * …………………………………………. <This is what I want
 * **News #2**
    blablablalbal albalablalbb
 *  [Roy](https://wordpress.org/support/users/gangleri/)
 * (@gangleri)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/split-posts/#post-860924)
 * Ah, you mean _between_ posts!
    I suppose that your stylesheet is de place to 
   look, but to be honest, I wouldn’t know how it works. Should nobody here have
   a suggestion, I’d advice to look around for a theme that does that and see how
   it’s done.
 *  Thread Starter [hesleskaug](https://wordpress.org/support/users/hesleskaug/)
 * (@hesleskaug)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/split-posts/#post-860932)
 * Ok… Thanks
 *  [jberghem](https://wordpress.org/support/users/jberghem/)
 * (@jberghem)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/split-posts/#post-860948)
 * It’s not very difficult.
 * First look at the code of your template file (like the index.php)
    Most template
   files have the post content placed with in a `<div>` and have been given the 
   class “post” so it looks like this: `<div class="post" ...`
 * Okay, you don’t need to change anything here all you’re doing here is verifying
   that the div tag that contains the post has a class named “post” because this
   is the selector we will be editing in the CSS file. Let’s assume your template
   file does.
 * Open the style.css file of your theme and look for the selector `.post`. In the
   Default (Kubrick) Theme that’s on line 259:
 *     ```
       .post {
       	margin: 0 0 40px;
       	text-align: justify;
       	}
       ```
   
 * Add:
 *     ```
       border-bottom-width: 2px;
       border-bottom-style: dotted;
       border-bottom-color: #000000;
       ```
   
 * between the {}’s so it looks like this:
 *     ```
       .post {
       	margin: 0 0 40px;
       	text-align: justify;
       	border-bottom-width: 2px;
       	border-bottom-style: dotted;
       	border-bottom-color: #000000;
       	}
       ```
   
 * That’s it.
 * You can change the width, style and color values to suit your preferences.
 *  Thread Starter [hesleskaug](https://wordpress.org/support/users/hesleskaug/)
 * (@hesleskaug)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/split-posts/#post-860950)
 * Thank you jberghem! 🙂

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

The topic ‘Split posts’ is closed to new replies.

## Tags

 * [line](https://wordpress.org/support/topic-tag/line/)
 * [split posts](https://wordpress.org/support/topic-tag/split-posts/)

 * 6 replies
 * 3 participants
 * Last reply from: [hesleskaug](https://wordpress.org/support/users/hesleskaug/)
 * Last activity: [17 years, 8 months ago](https://wordpress.org/support/topic/split-posts/#post-860950)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
