How can I alter the style of my buy buttons?

Hello There ,

Is there any way to change the style of the buy buttons from this to this , changing height , width , length of the buttons , Please any assistances would be helpful.

Thank You

1 Like

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:
.product-form__buttons {
position: relative;
}
.product__add__cart__button {
position: absolute;
top: 80px;
}
.shopify-payment-button {
position: absolute;
top: 83px;
left: 152px;
}
.share-icons {
margin-top: 101px;
}
quantity-input.quantity {
width: 294px!important;
}

1 Like