On a preview I’m piecing together for a client (seen here) I have a section of the page split between two cells of a grid row. On the right side I have a blog posts display that seems to be causing strange border lines to appear on the cell on the left side. I can’t seem to figure out why they are appearing at all or how to solve the error. The mysterious border lines also only seem to appear on larger screen sizes. Please advise.
Hey Michael,
This issue is the .post_delimiter set to left: -1500px;
Your can set it to left: 0px; in the General Styling > Quick CSS field:
to have a line between posts
.post_delimiter {
left: 0px;
}
or to display: none; to hide it
.post_delimiter {
display: none;
}
Best regards,
Mike
Thanks Mike.
Setting the .post_delimiter to left 0px didn’t seem to make any changes but setting the display to none did get rid of the lines altogether which works just fine for me. Thank you.