Can someone help me to add separator lines in between sections. Like this:
url: https://errival.com/products/errival%E2%84%A2-instant-period-cramp-relief-heated-belt
will donate!
A user seeks help adding horizontal separator lines between sections on their product page, providing a screenshot example and store URL.
Solutions Provided:
Two community members offer CSS-based solutions:
div#price-template while another targets .product__info-containerFollow-up Request:
The original poster requests additional separator lines below popup links (shown in a new screenshot) and offers to send coffee as thanks.
Status: One responder asks for clarification on the exact placement, providing a visual example. The conversation remains ongoing as the implementation details are being refined.
Can someone help me to add separator lines in between sections. Like this:
url: https://errival.com/products/errival%E2%84%A2-instant-period-cramp-relief-heated-belt
will donate!
Hi @Ryan1998
Check this one.
div#price-template--21563658666313__main {
border-bottom: 1px solid black;
border-top: 1px solid black;
height: 100px;
padding: 20px;
}
And Save.
Result:
Please donβt forget to Like and Mark Solution to the post that helped you. Thanks!
.product__info-container>*+* {
border-bottom: 1px solid !important;
border-top: 1px solid !important;
height: 100px;
width: 100%;
padding: 20px;
}