Add line under last post on all pages

Hi guys!

I’m using this CSS: #page .post-inner-content{border-bottom:0;border-top:1px solid #e0e0e0;padding:0}

I’d like to add a line under the last post as well. Tried a few things but nothing worked. Please help!
My site: http://www.lipstickalchemist.com/

Hi @lipstickalchemist,

Thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

.blog #page article.post:nth-last-of-type(1) .post-inner-content {
    border-bottom: 1px solid #e0e0e0;
}

Best Regards,
Movin

Thank you, that works!

You are most welcome here :slight_smile: