I have tried previously solved solution codes added to my base.css.
My variants (style/size/etc.) are populating as white text on white background as my theme is largely white on black background. My pop-up cart is also showing white on white text.
Site is bloodmasssociety.com - no password. I had similar issues with the search bar options but was able to use code from this forum to fix it.
Hi @fallopiansaint , go to component-cart-drawer.css and add the following code:
td.cart-item__details {
color: #010101 !important;
}
a.cart-item__name.h4.break {
color: #010101 !important;
}
span.price.price--end {
color: #010101 !important;
}
button.button.button--tertiary.cart-remove-button {
color: #010101 !important;
}
@fallopiansaint , go to section-main-product.css and add the following code :
fieldset.js.product-form__input label {
color: #010101 !important;
}
1 Like
THANK YOU SO MUCH! This fixed it!!
1 Like