My “More payment options” button is too small to stand out for customers to click, how can I resize it?
My website address:
My “More payment options” button is too small to stand out for customers to click, how can I resize it?
My website address:
Hey @tipipalette ,
If you’re using inline styles for the “More payment options” button, you can directly adjust the style attributes for that tag. Here’s how you can modify the existing inline styles to resize the button:
More payment options
result:

If I was able to help you, please don’t forget to Like and mark it as the Solution!
If you’re looking for expert help with customization or coding, I’d be delighted to support you. Please don’t hesitate to reach out via the email in my signature below—I’m here to help bring your vision to life!
Best Regard,
Rajat Sharma
Where do I find the file to edit this tag?
I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.
Best Regards.
To edit the “More payment options” button tag in your Shopify store, you need to locate the correct Liquid file in your theme’s code. Here’s how you can find and edit it:
Follow these Steps:
Online Store
Themes
Edit Code
Open the theme.css or syles.css file in the Assets folder.
Add this CSS:
.shopify-payment-button__more-options {
font-size: 18px !important;
padding: 10px 20px !important;
background-color: #d1a3a3 !important;
color: #ffffff !important;
border-radius: 6px !important;
border: 2px solid #a87373 !important;
text-align: center !important;
text-decoration: none !important;
}
Save the file and refresh your product page.
Let me know if you’re unable to locate the file or need help applying these changes!
Thanks
Where do I find and edit that code?
thank you very much! ![]()
you can add custom CSS directly to the theme.liquid file under the section, but it’s generally better to add it to the section for proper styling. However, if you want to directly add it in the section, here’s how you can do it:
Steps to Add Custom CSS Directly in theme.liquid:
Online Store > Themes > Edit Code
In the Layout folder, find and open the theme.liquid file.
Add Custom CSS Directly Below the Tag:
-In the theme.liquid file, scroll down to locate the tag.
-Add the following block right after the opening tag:
Visit your product page to check if the “More payment options” button is now resized and styled as you intended.