Re: Changing colour of 'delete item in cart' and 'go to check out' button

Solved

Changing colour of 'delete item in cart' and 'go to check out' button

Alllways
Excursionist
24 0 5

Hello, I am currently working on a store using the sense theme.

I would like to change the colour of some buttons but I dont know how. I will provide pictures of an example how I would like it. I want to change the colour to: # 01AA0A (green)

 

Thanks in advance.

Kind regards.

 

now.PNGHow i would like it.PNG

 

Accepted Solutions (2)

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Hi @Alllways 

Try 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:

 

cart-remove-button#Remove-1 {
    background: #01AA0A;
    border-radius: 10px;
}
button#checkout {
    background: #01AA0A;
}

 

  • And Save. 

I hope it help. 

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

CodingSolution
Trailblazer
176 12 10

This is an accepted solution.

Use this code

.button {
    background-color: #01AA0A;
    /* You can also adjust other properties like text color, padding, etc. */
}
banned

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Hi @Alllways 

Try 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:

 

cart-remove-button#Remove-1 {
    background: #01AA0A;
    border-radius: 10px;
}
button#checkout {
    background: #01AA0A;
}

 

  • And Save. 

I hope it help. 

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.

CodingSolution
Trailblazer
176 12 10

This is an accepted solution.

Use this code

.button {
    background-color: #01AA0A;
    /* You can also adjust other properties like text color, padding, etc. */
}
banned