Change add to cart button color and boldness

This problem is most likely very simple, I would like the add to cart button on all my products to be a certain color and I would like for it to be bold. The text color of the button can be white. There is other discussions about this topic but it does not seem to be working for me. My theme is sense. Also I would like to have the buy now button removed, how can I do that?

Here is a guide for doing exactly what you describe using the Sense theme:

Video Guide: https://youtu.be/57ZKXwQeOJ0?si=EIMAiQpF-KzVHn1K
Full Guide: https://biznazz101.com/blogs/news/how-to-change-shopify-button-color

Code:

.button {
  font-weight: bold;
  background: #9b046f;
  color: whitesmoke;
  border: 2px solid;
}

Then to disable the BIN button add this code to your base.css file:

.shopify-payment-button__button .shopify-payment-button__button--unbranded 
{display: none; visibility: hidden;}

Hope that is helpful to you!
@biznazz101

Hi @Flexibottle

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Richard | PageFly

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.button {
font-weight: bold !important;
background: #9b046f !important;
color: white !important;
border: 2px solid #000 !important;
}
.shopify-payment-button__button
{
visibility: hidden !important;
}

Hi Flexibottle,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > section-maina-product.css and paste this at the bottom of the file:
.product-form__submit{
font-weight: bold;
background: #9b046f;
color: white;
border: 3px solid #000;
}

.shopify-payment-button__button{
visibility: hidden !important;
}

If I managed to help you then, don’t forget to Like it and Mark it as Solution!