Dawn Theme - add to cart has no background

Hi. I have dawn theme website http://ecobase.nz/ pwd: Wendy When you click a product the add to cart button has no background. I have tried changing colour themes, background themes etc. but nothing has worked to change the background colour. I want it to have at least a black outline so people can see its a button.

Can someone please assist.

Hello @heymish ,

You can try to follow these steps:

Go to Online Store → Themes → Actions → Edit code

Go to Assets → base.css file or theme.liquid file

.add-to-cart {
  background-color: #ff0000;
}

Save and preview

Hope this can help you out.

Ali Reviews team.

Hi @heymish

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Base.css

.product-form__submit {
    background-color: #c3c3 !important;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

Followed these steps however still no background

Followed these steps however still no background.

Found a solution. Pasted the following code into the Custom CSS section in theme settings.

product-form [type=“submit”] {
color: #FFFFFF !important;
background-color: #58b42d !important;
font-weight: bolder !important;
}

Changed the background colour to the one I needed.