Feedback for your online store from the community
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello, the shop payment button is cutting off. I want to keep the buy buttons round as they are, but resizing them with the shopify default--- "rounding - button corner radius" --- is not fixing the problem of the shop payment button. is there css individual page code that can solve this? Or theme code?
https://thewildhoney.pk/products/men-honey
Solved! Go to the solution
This is an accepted solution.
Hey @SamCheema
Welcome to Shopify Community.
You can add the given CSS in theme.liquid above </head> tag.
<style>
body dynamic-checkout .shopify-payment-button__button {
height: unset;
}
</style>
OUTPUT:
Thanks
This is an accepted solution.
Hi Sam,
Below is the custom css code which solved this issue on our store. You just need to go to Customize your theme and put it in custom css field of a product template :
.shopify-payment-button__button,
.shopify-payment-button__button--unbranded {
height: 100%;
}
Hope it helps
This is an accepted solution.
Hey @SamCheema
Welcome to Shopify Community.
You can add the given CSS in theme.liquid above </head> tag.
<style>
body dynamic-checkout .shopify-payment-button__button {
height: unset;
}
</style>
OUTPUT:
Thanks
Yes its worked thank you
This is an accepted solution.
Hi Sam,
Below is the custom css code which solved this issue on our store. You just need to go to Customize your theme and put it in custom css field of a product template :
.shopify-payment-button__button,
.shopify-payment-button__button--unbranded {
height: 100%;
}
Hope it helps