Hi @collins276 , go to base.css and add the following code :
button.shopify-payment-button__button.shopify-payment-button__button--unbranded {
padding-top: 20px !important;
padding-bottom: 20px !important;
}
.product-form__submit {
padding-top: 20px !important;
padding-bottom: 20px !important;
margin-bottom:2rem !important;
}
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;
}