Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
As the title says, I can't figure out where to change the color in the cart popup. The colors scheme makes it so the button label is invisible, I'd like the text on t he button white. I'm sure there's a code to fix this, but I'm also not clear on how the popup is this color in the first place, or how you make changes to the pop-up. Thx in advance!
You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag
<style>
button.button.button--primary.button--full-width {
color: #fff !important;
}
</style>
Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!