Why isn't the 'add to cart' button showing in my online store?

Please help! There is no “add to cart to button in my store” how to add. I already enabled the “quick add buttom” but still not showing! I am using sense theme

link: maevincollection.com

1 Like

Hi @Vince111

The issue is you set the background, and the button’s text color is white, so you cannot see them. Please go to your Online Store > Themes > Customize > Theme settings > Color, edit Schemes setting your store uses for your button to solve it.

Hi @Vince111

The default color of the buttons are white, also the background if you cant change it in the Costumize setting you can check this one.

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:

.button, .shopify-challenge__button, .customer button {
    color: black;
    background: red;
}

And save.

Result:

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