How to change the color or Add to Cart Button - Dawn Theme

Trying to change the Add to Cart button to the same Blue Color as the View All Button…

Hey @FunkoBros

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 tag.

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

Best Regards,
Moeed

Hi @FunkoBros

If you only want to do this changes in your Featured collection, please follow the instructions below

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the base.css file
  3. At very end of the code, add the code below
[id$="featured_collection"] .quick-add__submit.button.button--secondary {
    background: rgb(var(--color-button-text));
    color: #ffff;
}