Why is my quantity selector button showing blank on my website?

my quantity selector button is blank .this is my website https://snugglyshoppe.com/products/mangaradiance-art please solve this

Hello @nihal66 :waving_hand:

In Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom

.product__info-wrapper button.quantity__button,
.product__info-wrapper quantity-input.quantity input {
    color: #000 !important;
}

The result

Hope that helps!

Hi @nihal66

Please go to your Online store > Themes > Edit code > Assets > open base.css file, go to very bottom of this file, remove this code to solve this issue

.product__info-wrapper  button.quantity__button, .product__info-wrapper quantity-input.quantity input {
    color: #fff !important;
}

Go into your store code and look for a file called base.css. Near the end you will find the following code:

.product__info-wrapper  button.quantity__button, .product__info-wrapper quantity-input.quantity input {
    color: #fff !important;
}

Delete it, now the quantity selector will look correctly.