Need help in removing the denominations under gift card variants

Topic summary

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:

  • Add custom CSS code to the theme’s “Custom CSS” section
  • The CSS targets product form pill-style radio button labels and sets a fixed width of 95px
  • This adjustment removes the unwanted “0” display

Outcome:

  • The solution was confirmed successful by the original poster
  • Issue resolved
Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

Updating Media

How do I remove the “0” below each gift card variant on my store.

https://www.jiwya.com/products/gift-card

Add this code in section of “Custom CSS” in your theme customization

.product-form__input--pill input[type=radio]+label {
width:95px!important;
}
1 Like

This worked perfectly, thank you!