i want to remove just the age variant picker. but keeping the age one
how can i do that?
and if i cant, how can i put the age variant picker in the middle?
thank you in advance
store link : officialbresh . com
pass: hugegyat
A store owner wants to modify the variant picker display on their product page. They have two variants (age and another option) and want to either:
A solution was provided using custom CSS code to be added to the theme.liquid file after the <head> tag. The code:
display: nonedata-option-value-id="5305131204761")The discussion appears resolved with a working CSS solution, though no confirmation from the original poster yet.
i want to remove just the age variant picker. but keeping the age one
how can i do that?
and if i cant, how can i put the age variant picker in the middle?
thank you in advance
store link : officialbresh . com
pass: hugegyat
Please add this code to theme.liquid file, after <head>
<style>
.product-form__input:has([data-option-value-id="5305131204761"]) legend { display: none; }
.product-form__input:has([data-option-value-id="5305131204761"]) { text-align: center; padding-top: 12px; }
</style>