How can I change the colours of dynamic buttons? Dawn Theme

Please help me change the colour of the dynamic butttons. There are not normal buttons.

Attaching the links and the screenshots.

Need to change the green colour in the following link:

https://iguanabyswastiparekh.com/products/gulmohar-grand-earring

Also need to change the colors of these black and grey buttons on the following link:

https://iguanabyswastiparekh.com/

These are all different types buttons. Need CSS for the changes so that i can apply to all.

Hi @SankalpParekh

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

Online Store ->Theme ->Edit code

Assets ->Base.css

button#ProductSubmitButton-template--19440923377982__main {
    background-color: #39601e !important;
    color: #fff !important;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

To piggy-back off of Richards idea, I would recommend you (if the color settings in the customizer doesn’t cover it), override the css for this class “shopify-payment-button__button” otherwise it might only cover this one button.

.shopify-payment-button__button {

background-color: #39601e;

color: #fff;

}

Let me know if this did the trick :slightly_smiling_face: