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
Hello, I am having problem with the text color as shown on the picture. How can I change the text color to black on the popup?
Same thing is when you click on the add to cart button:
Solved! Go to the solution
This is an accepted solution.
Hi @PabloPier
Check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
.product-quick-add__variant.hidden.sm\:grid .v-stack.gap-0\.5 *,
.quick-buy-drawer__variant.text-start.h-stack.gap-6 * {
color: #000;
}
And Save.
Result:
Do you like to add outline on the check out button?
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Hi @PabloPier
Check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
.product-quick-add__variant.hidden.sm\:grid .v-stack.gap-0\.5 *,
.quick-buy-drawer__variant.text-start.h-stack.gap-6 * {
color: #000;
}
And Save.
Result:
Do you like to add outline on the check out button?
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!