Line after the last post

Hi,

I’ve managed to add the lines separating posts and I’ve removed the line below the last post in HOME PAGE (although it’s still visible on mobile devices) but when you go to categories there’s a line below the last post.

How can I remove the line after the last post in every category?

I’ve tried to remove them with code:

article.post:nth-child(6) .post-inner-content{
border-bottom: none;
}

It helps only on pages with 6 posts. When I add another with different number (ex. 4), the line disappears in fourth post as well.

My website url: www.biggerthanlimits.com

The url where the line appears: 安全加密检测

Hope you can help me.

Anna :slight_smile:

Hi Anna,

I hope you are well today and thank you for your question.

You can try removing that line by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

article.post:last-of-type .post-inner-content{
  border-bottom: 0;
}

Best Regards,
Movin

Thank you!

Looks perfect :slight_smile:

You are most welcome here :slight_smile: