For a lot of us, transitioning from one post to another can be difficult to do. I try to do it with a Post Thumbnail, but it just seems like it is missing something. There is an easy way you can separate posts with a separator image and all you have to do is modify your theme’s style.css file.You must start by creating an image or finding an image for the separation. Feel free to take ours 🙂
Edit your theme’s style.css file
find .post { and change the contents.
Before: .post { margin : 0px 0px 15px 0px; }
After:
.post { margin : 0px 0px 15px 0px; background : transparent url(images/postseparator-468.jpg) no-repeat bottom; }
That’s all there is to it.
Note: These functions are not of my own creation, simply things I have found along the way. If you are the author of this function, please let me know so I can properly credit you with your work!