Is there a way to change the variant picker shape from rounded rectangle to rectangle? is there a code i could use to change it?
Would you mind sharing your store’s URL so we can provide a solution for you? Thanks!
hello yes. this is my website: https://springsjewellery.com/
hello yes. this is my website: springsjewellery.com
Please add the following code at the end of your base.css file:
.product-form__input input[type=radio]+label {
border-radius: 0px;
}
Should that help answer your query, we always appreciate liking & marking an as answer to let the community find quality solutions faster. Thanks!
Try this code instead:
.product-form__input input[type=radio]+label {
border-radius: 0px;
}
Let me know!
isn’t it the same code? I tried it regardless and still no changes
My bad, this is the updated one:
.product-form__input input[type=radio]+label {
border-radius: 0px!important;
}
Forgot the !important here ![]()
thank you! it worked!

