How can I modify the 'View All' button color in the new Dawn theme?

How Do I Change The Color Of The View All Button On The New Shopify DAWN Theme?

my website - https://hikeyourz.com/

I want to change the background from black to #06818B

Thanks for the support.

1 Like

Hi @yonatanmikunis ,

Try this one.

  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.
.center.collection__view-all.scroll-trigger.animate--slide-in a {
    background: #06818B;
}

Result:

I hope it help.

Hello @yonatanmikunis
please add this css Asset > base.css and paste this at the bottom of the file:-

.center.collection__view-all.scroll-trigger.animate--slide-in a {
    background-color: #06818B;
}