Have your say in Community Polls: What was/is your greatest motivation to start your own business?

What code do I need to edit the colour of cart drawer "checkout" text?

Solved

What code do I need to edit the colour of cart drawer "checkout" text?

mightymeatpie
New Member
7 0 0

Please see attached photo below. The background colour of the cart drawer i would like to keep, however, it would be nice to change the text colour of the "checkout" button as it is the same as the button colour, so you cannot read it.

 

Could someone please provide me with some code or where to amend code to change colour of the text on this button only?

 

Thank you!Screen Shot 2023-09-13 at 3.34.41 pm.png

Accepted Solution (1)
Moeed
Shopify Partner
6325 1715 2067

This is an accepted solution.

Hey @mightymeatpie 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
button.button.button--primary.button--full-width {
    color: black !important;
}
</style>

RESULT:

Moeed_0-1694601576831.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 14 (14)

Artzen_tech
Shopify Partner
552 113 112

Hello @AuthorAngel
Its Artzen Technologies! We will be happy to help you today.


please send your store url


Let me know if need further assistance
Regards,
Artzen Technologies

If helpful, please Like and Accept this Solution to help others
Artzen Technologies | A Shopify Development Agency
WhatsApp - 9877983930

Book FREE CONSULTATION who want to migrate to Shopify or want to start an eCommerce business with Shopify

Moeed
Shopify Partner
6325 1715 2067

Hey @mightymeatpie 

 

Could you please provide your Store URL and, if applicable, the Password too? Your cooperation is greatly appreciated!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


oscprofessional
Shopify Partner
16116 2410 3126

Hello @mightymeatpie 

Please provide your store URL, so I can review it and provide a solution.

Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing | Oscp Upsell & Cross sell App : Free | Oscp Sales & Volume Discount App : Free | Custom Pricing Wholesale App : Free

Dan-From-Ryviu
Shopify Partner
10256 2038 2109

Hi @mightymeatpie 

You can try to add this code before </head> of your theme.liquid file and then check again

<style>
#CartDrawer-Checkout { color: #000 !important; }
</style>

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: 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.

mightymeatpie
New Member
7 0 0

Ahh thank you! I will check if this works. And i assume i just put in the colour code for the colour i desire?

Cheers,

Max

mightymeatpie
New Member
7 0 0

Unfortunately it did not work. My website link is ambiesound.au.

Moeed
Shopify Partner
6325 1715 2067

This is an accepted solution.

Hey @mightymeatpie 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
button.button.button--primary.button--full-width {
    color: black !important;
}
</style>

RESULT:

Moeed_0-1694601576831.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


mightymeatpie
New Member
7 0 0

You're a bloody legend cheers! it worked!

Moeed
Shopify Partner
6325 1715 2067

Thank you for your reply. I'm glad to hear that the solution worked well for you. If you require any more help, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


mightymeatpie
New Member
7 0 0

Is your assistance service free ongoing?

Artzen_tech
Shopify Partner
552 113 112

Hello @AuthorAngel
Its Artzen Technologies! We will be happy to help you today.


You can try to follow these steps:

Go to Online Store -> Themes -> Actions -> Edit code. -> theme.liquid file.

Go Assets folder Add the following code in the bottom of the file above </body> tag

<style>
button.button.button--primary.button--full-width {
    color: black;
}
</style>


Let me know if need further assistance
Regards,
Artzen Technologies

If helpful, please Like and Accept this Solution to help others
Artzen Technologies | A Shopify Development Agency
WhatsApp - 9877983930

Book FREE CONSULTATION who want to migrate to Shopify or want to start an eCommerce business with Shopify
mightymeatpie
New Member
7 0 0

Worked cheers!

oscprofessional
Shopify Partner
16116 2410 3126

Hello @mightymeatpie 

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

 

button.button.button--primary.button--full-width {
   color: #000 !important;
}

 

 

Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing | Oscp Upsell & Cross sell App : Free | Oscp Sales & Volume Discount App : Free | Custom Pricing Wholesale App : Free
mightymeatpie
New Member
7 0 0

I tried another method already but thank you for your help.