Hello there,
Over the passed 48 hours, I have been surfing the web for a solution to change the color of the text/font of the half paged add to cart section in shopify. To no avail. If anyone has any potential solutions, I would be very willing and grateful to give it a try. Just to be clear, the issue is not with the checkout page, it is with the half paged add to cart section. Will supply photo of issue and url to my shop!
https://spinealignsolutions.shop/
Hi @JohnKoehn35
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
- And Save.
.drawer__inner * {
color: #efc2ef;
}
button#CartDrawer-Checkout {
color: black;
}
Result:
I hope it help.
"
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
"
Thank you very much! It did indeed fix 99% of my issue. That 1% remaining being when the cart is empty, the “continue shopping” text is still in pink on the pink bubble background. I will include a photo below regarding my last subtle problem. Thank you for your generous assistance!
Try this one.
Same Instruction.
.cart-drawer__empty-content a.button {color: black;}
Result:
I hope it help.
"
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
"
Worked terrifically! Thank you again!