As you can see the text is white which is causing it to blend in with the background. How do i change it to black?
thank you
A user is experiencing a text visibility issue in their Shopify checkout section where white text is blending into a white background, making it unreadable. The problem specifically affects the cart drawer checkout button.
Troubleshooting attempts:
</body> in theme.liquidbutton#CartDrawer-Checkout with black text (color: #000) and white background (background: #fff)Current status:
!important flags to override existing stylesScreenshots throughout show the implementation steps and persistent white-on-white text issue in the checkout interface.
As you can see the text is white which is causing it to blend in with the background. How do i change it to black?
thank you
please paste the given code above in theme.liquid.
layout >> theme.liquid
button#CartDrawer-Checkout {
background: #fff;
color: #000;
}
@Maxyb77 sorry. please replace the code.
button#CartDrawer-Checkout { background: #fff; color: #000; }Still does not work for some reason
ok, one more try. paste this code on the same place.
button#CartDrawer-Checkout { background: #fff!important; color: #000!important; }