Hi, I want to make the shop pay button even, so that the bottom padding/spacing isn’t so big. Help would be great thanks. This shop pay buttom applies for all products/product pages.
Hi @blossomvase
I hope you are well. You can follow our instructions below:
Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/iDxwa8zBQ4Z-
Step 3: Copy the code below and paste it there
Here is the code for Step 3:
a#more-payment-options-link {
display: none !important;
}
Please let me know if it works. Thank you!
Best,
Daisy - Avada Support Team.
Hi @blossomvase ,
It has more payment options below that button, but the color is the same as the background.
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings to display this text.
.shopify-payment-button__more-options {
color: #fff !important;
}
You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the tag
Actually, this is a link not padding, it’s just a black color that can’t be seen. Just change it to white to display it
Result:
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
If you want it like the image above, paste this code.
- Go to Online Store → Theme → Edit code.
- Open your theme.css / based.css file and paste the code in the bottom of the file.
.shopify-payment-button__more-options {
color: white;
}
OR
If you want it like the image above, paste this code.
- Go to Online Store → Theme → Edit code.
- Open your theme.css / based.css file and paste the code in the bottom of the file.
.shopify-payment-button__more-options {
display: none !important;
}
OR
If you want it like the image above, paste this code.
- Go to Online Store → Theme → Edit code.
- Open your theme.css / based.css file and paste the code in the bottom of the file.
.shopify-pay-button.pp-mt-4.pp-rounded-3xl {
background-color: #fff !important;
padding: 0 !important;
}
.shopify-payment-button__more-options {
color: black;
}
.gravity-button {
border-radius: 15px !important;
}
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!






