Buy Now Button Customisation - Prestige Theme

Solved

Buy Now Button Customisation - Prestige Theme

learnify
Excursionist
26 0 1

Hello Guys, I want to change the colour of "BUY IT NOW" and "ADD TO CART" buttons as below on product page

learnify_2-1726212009491.png

 


Right now it is as below on product pages.

learnify_1-1726211940756.png

 

Store Link: https://9bqeh5vkg9lyaw3p-34794897548.shopifypreview.com

 

Accepted Solutions (5)

BSSCommerce-B2B
Shopify Partner
1723 513 576

This is an accepted solution.

@learnify ,

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

 

<style>
buy-buttons > button {
   background: #000!important;
   color: #fff!important
}
buy-buttons > .shopify-payment-button button {
   background: red!important;
   color: #fff!important
}
</style>

 

 

Result:

BSSCommerceB2B_1-1726212421230.png

If it helps you, please like and mark it as the solution.

Best Regards 😍

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

websensepro
Shopify Partner
1220 136 156

This is an accepted solution.

Hi @learnify 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

 

 

 

<style>
buy-buttons > button {
   background: #000 !important;
   color: #fff !important
}
buy-buttons > .shopify-payment-button * {
   background: red !important;
   color: #fff !important
}
</style>

 

 

websensepro_0-1726212475278.png

 

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial

View solution in original post

GTLOfficial
Shopify Partner
544 115 108

This is an accepted solution.

Hello @learnify 
Go to online store ----> themes ----> actions ----> edit code---->theme.css
add this code at the end of the file.

.button.button--outline.w-full {
color: white !important;
background: black !important;
}
.shopify-payment-button__button.shopify-payment-button__button--unbranded.BUz42FHpSPncCPJ4Pr_f.jjzYeefyWpPZLH9pIgyw.RWJ0IfBjxIhflh4AIrUw {
background: red !important;
}

result
6.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: [email protected] - Skype: ritesh_27dh

View solution in original post

Tech_Coding
Shopify Partner
309 78 69

This is an accepted solution.

Hello @learnify 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
  button.shopify-payment-button__button {
     background: #ff0000 !important;
 }
 .product button.button.button--outline.w-full {
     background: #000 !important;
     color: #fff !important;
 }
</style>

Tech_Coding_0-1726212522333.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

View solution in original post

Made4uo-Ribe
Shopify Partner
8238 1977 2425

This is an accepted solution.

Hi @learnify 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

button.button.button--outline.w-full {
    background: #000;
    color: #fff;
}

.shopify-payment-button .BUz42FHpSPncCPJ4Pr_f {
    background: red;
}

 

And save. 

Result:

Made4uoRibe_0-1726219278053.png

 

 

 

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 5 (5)

BSSCommerce-B2B
Shopify Partner
1723 513 576

This is an accepted solution.

@learnify ,

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

 

<style>
buy-buttons > button {
   background: #000!important;
   color: #fff!important
}
buy-buttons > .shopify-payment-button button {
   background: red!important;
   color: #fff!important
}
</style>

 

 

Result:

BSSCommerceB2B_1-1726212421230.png

If it helps you, please like and mark it as the solution.

Best Regards 😍

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

websensepro
Shopify Partner
1220 136 156

This is an accepted solution.

Hi @learnify 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

 

 

 

<style>
buy-buttons > button {
   background: #000 !important;
   color: #fff !important
}
buy-buttons > .shopify-payment-button * {
   background: red !important;
   color: #fff !important
}
</style>

 

 

websensepro_0-1726212475278.png

 

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial

GTLOfficial
Shopify Partner
544 115 108

This is an accepted solution.

Hello @learnify 
Go to online store ----> themes ----> actions ----> edit code---->theme.css
add this code at the end of the file.

.button.button--outline.w-full {
color: white !important;
background: black !important;
}
.shopify-payment-button__button.shopify-payment-button__button--unbranded.BUz42FHpSPncCPJ4Pr_f.jjzYeefyWpPZLH9pIgyw.RWJ0IfBjxIhflh4AIrUw {
background: red !important;
}

result
6.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: [email protected] - Skype: ritesh_27dh

Tech_Coding
Shopify Partner
309 78 69

This is an accepted solution.

Hello @learnify 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
  button.shopify-payment-button__button {
     background: #ff0000 !important;
 }
 .product button.button.button--outline.w-full {
     background: #000 !important;
     color: #fff !important;
 }
</style>

Tech_Coding_0-1726212522333.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

Made4uo-Ribe
Shopify Partner
8238 1977 2425

This is an accepted solution.

Hi @learnify 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

button.button.button--outline.w-full {
    background: #000;
    color: #fff;
}

.shopify-payment-button .BUz42FHpSPncCPJ4Pr_f {
    background: red;
}

 

And save. 

Result:

Made4uoRibe_0-1726219278053.png

 

 

 

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.