Updating Media
How do I remove the “0” below each gift card variant on my store.
A user encountered an issue where the number “0” was displaying below each gift card variant denomination on their Shopify store product page.
Solution Provided:
Outcome:
Updating Media
How do I remove the “0” below each gift card variant on my store.
Add this code in section of “Custom CSS” in your theme customization
.product-form__input--pill input[type=radio]+label {
width:95px!important;
}
This worked perfectly, thank you!