Shopify themes, liquid, logos, and UX
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 guys. I want to have the payment badges aligned under the dircetly under the buy with paypal button. I also want to remove "more payment options"
Anyone can help?
https://luviera.store/
password: bautso
I used a custom liquid to add the payment options
Solved! Go to the solution
This is an accepted solution.
Hey @AnimeVoyage
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
ul.list.list-payment {
justify-content: center !important;
}
.shopify-payment-button__more-options {
display: none !important;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @AnimeVoyage
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
button.shopify-payment-button__more-options.BUz42FHpSPncCPJ4Pr_f {
display: none !important;
}
@media screen and (min-width: 750px) {
.list-payment {
justify-content: flex-start !important;
}
}
</style>
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
This is an accepted solution.
Hey @AnimeVoyage
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
ul.list.list-payment {
justify-content: center !important;
}
.shopify-payment-button__more-options {
display: none !important;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @AnimeVoyage ,
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>
<style>
ul.list.list-payment {
justify-content: center !important;
}
.shopify-payment-button__more-options {
display: none !important;
}
</style>
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
HEllo @AnimeVoyage
Go to online store ----> themes ----> actions ----> edit code---->base.css
add this code at the end of the file.
.shopify-payment-button__more-options.BUz42FHpSPncCPJ4Pr_f {
display: none !important;
}
@media screen and (min-width: 750px) {
.list-payment {
justify-content: center;
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks