Divider Line between Posts?

  • Issue description: Interested i knowing if there is a way to add a horizontal line or divider between each posts so they don’t look so cluttered and messy.

  • Link to the page with the widget in question:

1 Like

Hi there, @toby_mathew :waving_hand:

Sure! Please try to add this code to the Custom CSS field and let me know if you like the result:

[class*="card-container__CardContainer-sc"] {
     position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

[class*="card-container__CardContainer-sc"]:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0; 
}

@Max That was PERFECT! Thank you!!!

2 Likes

It’s my pleasure :wink: