is anyone aware of how to change the shape of the shopify variants selection? curently have oval shapes but would like to update to rectangles
You have to unset the border radius. You can probably just throw this at the bottom of your ‘section-main-product.css’ file:
.product-form__input input[type=radio]+label {
border-radius: unset;
}
Also I noticed you can do it from the customizer. Open the customizer and go to the theme settings and then scroll down to “Variant Pills” then you can unset the radius:
thanks!
quick question while i have you. do you know how to change the outline color and background color for variants?