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;
}
thanks!
quick question while i have you. do you know how to change the outline color and background color for variants?
