Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Change text colour Add to Cart button on product page

Solved

Change text colour Add to Cart button on product page

AscendStudio
Shopify Partner
12 0 6

Hi,

Trying to change the text colour of the Add to Cart button on all product pages.

See photo attached.

Thanks for your help

 

Screen Shot 2023-09-21 at 6.27.28 pm.png

Accepted Solution (1)

laddisahsi
Shopify Partner
385 38 41

This is an accepted solution.

Hi @AscendStudio 

You can follow the following steps:

1. Please go to the Online Store
2. Then Edit Code
3. Please find the theme.liquid file
4. And add the following code in theme.liquid file above the </head> tag

 

<style>
button.product-form__submit.button.button--full-width.button--primary span {
    color: white !important;
}

.product-form__input input[type=radio]:checked+label {
    color: white !important;
}
</style>

 

 

 

laddisahsi_1-1695285422362.png

 

 

 

If this solution is worked, then please Like this and Mark this as accepted solution!


Laddi

-Shopify website development, Theme & App Development
-Contact me: WhatsApp


-Email Me
-If this solution is worked, then please Like this and Mark this as accepted solution!

View solution in original post

Replies 2 (2)

laddisahsi
Shopify Partner
385 38 41

This is an accepted solution.

Hi @AscendStudio 

You can follow the following steps:

1. Please go to the Online Store
2. Then Edit Code
3. Please find the theme.liquid file
4. And add the following code in theme.liquid file above the </head> tag

 

<style>
button.product-form__submit.button.button--full-width.button--primary span {
    color: white !important;
}

.product-form__input input[type=radio]:checked+label {
    color: white !important;
}
</style>

 

 

 

laddisahsi_1-1695285422362.png

 

 

 

If this solution is worked, then please Like this and Mark this as accepted solution!


Laddi

-Shopify website development, Theme & App Development
-Contact me: WhatsApp


-Email Me
-If this solution is worked, then please Like this and Mark this as accepted solution!
AscendStudio
Shopify Partner
12 0 6

Fantastic worked perfectly!

Thank you