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

Why are my Dawn 12.0 button colors not displaying correctly?

Solved

Why are my Dawn 12.0 button colors not displaying correctly?

xcsresources
Excursionist
13 0 3

Capture1.PNG

 

Hello,

Add to cart and buy now buttons are not displaying correctly under the color scheme chosen. I have tried playing with opacity and nothing seems to work accept shadow. When applying an outline color, it changes the text color etc..  Also, under "Buy Buttons" when I activate "show dynamic checkout buttons" the buy it now button is replaced with shop pay and it changes the text color of the add to cart button. As shown above, the colors selected in the scheme are not matching up with the button.

 

Capture.PNG

https://www.biche.store

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9094 2173 2683

This is an accepted solution.

Hi @xcsresources 

check this one. 

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

 

.button {
    background: #121212 !important;
    color: white !important;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1699718668092.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 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.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

View solution in original post

Replies 5 (5)

theycallmemakka
Shopify Partner
1743 424 443

Hi @xcsresources ,

 

Please let me know what color do you want on the button. I can write you the custom CSS to add these color to the button.

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

xcsresources
Excursionist
13 0 3

Hi, a green background with black text. Thanks

theycallmemakka
Shopify Partner
1743 424 443

Hi @xcsresources ,

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code just above </body> tag

 

<style>
.button.product-form__submit {
    background: rgb(40,129,45) !important;
    color: #000 !important;
}
</style>

makkaomakka_0-1699719115360.png

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

Made4uo-Ribe
Shopify Partner
9094 2173 2683

This is an accepted solution.

Hi @xcsresources 

check this one. 

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

 

.button {
    background: #121212 !important;
    color: white !important;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1699718668092.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 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.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
xcsresources
Excursionist
13 0 3

I used this as it affected every button instead of just the form_submit button