Shopify Dawn theme change color of buttons on product information site

Hi,

I changed the color of quick add button by copying this code into base.css:

.quick-add__submit {
padding: 0.8rem;
min-width: 100%;
box-sizing: border-box;
background-color: #324fb5;
color: #FFFFFF

But it doesn’t change the color of the quick add button when I go into product information.

How can I change that one as well?

1 Like

Hi @sgcventa

Would you mind to share your Store URL website? with password if its unpublish. Thanks!

1 Like

Thanks for the info, do you mean this button?

If its is try this one.

  • rom 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:
.product-form__submit {
    background: #324fb5 !important;
    color: white !important;
}
  • And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Thank you very much!

1 Like