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

Topic summary

A Shopify store owner using the Sense theme cannot see the ‘add to cart’ button despite enabling the ‘quick add button’ feature.

Root Cause:
The button exists but is invisible because both the button text and background are white, creating no contrast.

Proposed Solutions:

  1. Theme Settings Approach: Navigate to Online Store > Themes > Customize > Theme settings > Color, then modify the color scheme settings to create visible contrast between button text and background.

  2. CSS Code Edit: Access the theme code editor (Online Store > Themes > Actions > Edit code), locate the CSS file (base.css, style.css, or theme.css) in the Assets folder, and add custom CSS at the bottom:

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

Status: The issue remains unresolved as the original poster has not confirmed which solution worked. Both responses provide valid fixes for the color contrast problem.

Summarized with AI on November 11. AI used: claude-sonnet-4-5-20250929.

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!