How can I change my view all button to black on the Refresh theme?

how to make the view all button black? pls help

STORE URL: www.faithandyou.in

THEME: refresh

Hi @AryavK ,

+) Go to Admin Shopify > online store > edit code > find file base.css

+) Add code to the end of the file: => Save the file and go to the font store to check

.center .button {

background: color;
border: 3px solid color;
color: color;

}

+) Note: Replace color = the color you want to display on the button

  • Background: change the background color of the button
  • border changes the color of the button’s outer border
  • color: change the color of the text in the button
  • In case you add code and the button does not change, try adding !important at the end of the code. For example: color: color; => color: color !important;