Hi @collins276
Im not sure what do you like to achieve. You like to change the space between the two buttons? or change the heights? But anyway you can 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:
/* This is to change the space between two buttons. */
.product-form__submit {
margin-bottom: 5px;
}
/* And this is to increase/decrease the size of the buttons. */
button.shopify-payment-button__button.shopify-payment-button__button--unbranded {
padding: 0px;
}
.button, .shopify-challenge__button, .customer button, button.shopify-payment-button__button--unbranded {
min-height: 3rem;
}
And save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
