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

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.

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!

Use this code

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