I am just wondering, if you could help me on how can I change button color (From black text/white background to white text/black background). I am using Impulse theme. Website: www.clothingparadise.co.uk
From 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:
a.btn.btn--secondary.btn--small.section-header__link {
background: black !important;
color: white !important;
}
I am facing the same challenge as Lita. I want to change the “add to cart” button on the Impulse theme. Currently the button has white background with black font and I want the exact opposite.
I have tried your suggested solution but it does not work. Also, I do not find any of these (“base.css, style.css or theme.css” file) in the Assets folder. Could you please further help?