Hi Jeff,
Elemin use absolute positioning to place meta information on the left-hand side of each post. That being said, it is not really possible to add a separator below each post and ensure that it will always display below it. However, it is possible to add a separator to the top of each post and remove it from the first post. It will give you the same effect. Here’s some code to try:
.hentry {
border-top: 1px solid #ddd;
margin-top: 40px;
padding-top: 40px;
}
.hentry .post-format-icon {
top: 40px;
}
.hentry .entry-meta {
top: 95px
}
.hentry:first-child {
border-top: 0;
margin-top: 0;
padding-top: 0;
}
.hentry:first-child .post-format-icon {
top: 0;
}
.hentry:first-child .entry-meta {
top: 55px;
}
Please let us know how this works!