Shopify Dawn theme change color of buttons on product information site

Solved

Shopify Dawn theme change color of buttons on product information site

sgcventa
Tourist
3 0 3

Hi,

 

I changed the color of quick add button by copying this code into base.css:

 .quick-add__submit {
padding: 0.8rem;
min-width: 100%;
box-sizing: border-box;
background-color: #324fb5;
color: #FFFFFF

But it doesn't change the color of the quick add button when I go into product information.

How can I change that one as well?

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
10211 2427 3081

This is an accepted solution.

Thanks for the info, do you mean this button?

Made4uoRibe_0-1700491432047.png

If its is try this one. 

  • rom 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:

 

.product-form__submit {
    background: #324fb5 !important;
    color: white !important;
}

 

  • And Save. 

 

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 4 (4)

Made4uo-Ribe
Shopify Partner
10211 2427 3081

Hi @sgcventa 

Would you mind to share your Store URL website? with password if its unpublish. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
sgcventa
Tourist
3 0 3

cventa.com

Made4uo-Ribe
Shopify Partner
10211 2427 3081

This is an accepted solution.

Thanks for the info, do you mean this button?

Made4uoRibe_0-1700491432047.png

If its is try this one. 

  • rom 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:

 

.product-form__submit {
    background: #324fb5 !important;
    color: white !important;
}

 

  • And Save. 

 

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
sgcventa
Tourist
3 0 3

Thank you very much!