Why is my checkout button invisible on my website?

Solved

Why is my checkout button invisible on my website?

BearCollective
Visitor
2 0 0

Need some help with what I believe to be a CSS problem on my site, checkout button is completely invisible but is there. You can click the empty space, and everything works outside it being invisible. I've seen a couple of others with the same issue but there's no real solution on here to DIY it. Currently using the refresh theme. Domain also "needs attention", don't know if that has anything to do with it or not. Store URL: Zulify

Capture124321.JPG

Accepted Solution (1)

PageFly-Oliver
Shopify Partner
878 190 180

This is an accepted solution.

Hi @BearCollective ,

 

You can try this code by following these steps: 

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file -> Save

<style>
#CartDrawer-Checkout{
    border: solid 1px rgb(var(--color-foreground));
    color: rgb(var(--color-foreground));
}
</style>



Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 5 (5)

Dan-From-Ryviu
Shopify Partner
9137 1828 1863

Hi @BearCollective 

Please go to your Online store > Themes > Edit code > Assets > open base.css file and add this code at the bottom

.cart-drawer .cart__checkout-button {
border: 2px solid ##FC4F87 !important
color: #FC4F87 !important;
}

Screenshot 2023-10-26 at 08.56.46.png

- Helpful? Like and Accept solution! ‌Support me: Buy coffee
- Ryviu - Reviews & QA app, collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy app: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

BearCollective
Visitor
2 0 0

Hey @Dan-From-Ryviu, thank you for the quick response! I added the code in the correct spot but nothing changed. What else can I do? 

Capture2142315.JPG 

Dan-From-Ryviu
Shopify Partner
9137 1828 1863

My mistake, please update code to this

.cart-drawer .cart__checkout-button {
border: 2px solid ##FC4F87 !important;
color: #FC4F87 !important;
}

- Helpful? Like and Accept solution! ‌Support me: Buy coffee
- Ryviu - Reviews & QA app, collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy app: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

PageFly-Oliver
Shopify Partner
878 190 180

This is an accepted solution.

Hi @BearCollective ,

 

You can try this code by following these steps: 

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file -> Save

<style>
#CartDrawer-Checkout{
    border: solid 1px rgb(var(--color-foreground));
    color: rgb(var(--color-foreground));
}
</style>



Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

chaka37
Tourist
3 0 1

Fixed it! Thank you