Hello everyone,
I need help with this border styling issue.
None of my tries have been working.
Thank you!
A user encountered a border styling issue on their Shopify product page, specifically with subscription option boxes. An attached screenshot showed the problem area.
Initial Solutions Offered:
.smartrr-subscription-benefits-container classClarification:
The user clarified they were trying to connect the 2nd and 3rd boxes when subscription options are clicked, not the initially assumed elements.
Resolution:
The user resolved the issue independently by updating the subscription group ID in their CSS. The solution involved targeting a specific data-smartrr-selling-plan-group-id attribute and applying custom border styling to remove bottom borders and border-radius when the subscription group is active, creating a seamless connection between boxes.
Status: Resolved - working CSS code provided.
Hello everyone,
I need help with this border styling issue.
None of my tries have been working.
Thank you!
Hi @swalter85
.smartrr-subscription-benefits-container {
margin-top: -2px;
border-top-left-radius: 30px !important;
border-top-right-radius: 30px !important;
border-top: 2px solid black;
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hi @swalter85
If you find my advice helpful please remember to LIKE and accept as SOLUTION.
Thanks!
@websensepro I’m trying to connect the 2nd and 3rd box.
Sorry for not being clear.
Didn’t work @topnewyork
P.s. I’m trying to connect the the 2nd and 3rd box when subscription options is clicked.
I was able to fix it myself. The subscription group id needed to be updated.
[data-smartrr-selling-plan-groups] [data-smartrr-selling-plan-group-id="a6fc2cb43da04ae5f4738acf783a91e1eac62343"].smartrr-group-active {
border-top: 2px solid #333333;
border-left: 2px solid #333333;
border-right: 2px solid #333333;
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
margin-bottom: 0 !important;
border-bottom: 0 !important;
}