How do I change the color of buy button inside a drawer container in Shopify?

I wanna change the Buy Button inside the bottom drawer in mobile view

URL- https://katharos.co.in/products/katharos-electric-bluetooth-aroma-diffuser-for-armoatherepy-white-color

1 Like

Hi @ishaankatharos ,

Try this.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
  4. And Save.
@media only screen and (max-width: 719px){
.quick-purchase-bar.active .btn {
    background: wheat !important;
    color: black;
}
}

Result:

I hope it help.

1 Like

Worked Like a charm. thanks a lot

1 Like