i wanna change colour of cart drawer

1] Want View Cart Button Background To Be transparent like checkout button

2] Want Checkout Button Background To Be #9ACA3D & Text Colour To be #303030

URL; https://www.mostlymo.com/pages/home

Hello @Emiway

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.buy-buttons--compact .button--secondary, button.button.button--xl.button--outline { background: #9ACA3D !important; color: #303030 !important; }

RESULT:

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

Hi @Emiway

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
form.buy-buttons.buy-buttons--compact a.button.button--xl.button--secondary {
    background: unset !important;
    border: 1px solid black !important;
    color: black !important;
}
form.buy-buttons.buy-buttons--compact button.button.button--xl.button--outline {
    background: #9ACA3D !important;
    color: #303030 !important;
}

Result:

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

Hello there,

Could you please provide the URL/ password to your store so that I can check it and provide you with the exact solution?