Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
Last active October 18, 2024 07:15
Show Gist options
  • Save webtoffee-git/6154cfad7263a351069aba346b4d21e1 to your computer and use it in GitHub Desktop.
Save webtoffee-git/6154cfad7263a351069aba346b4d21e1 to your computer and use it in GitHub Desktop.
Stripe card icon customisation - By WebToffee
<?php //Do not copy this line of code
add_action("wp_footer", "wt_customize_stripe_icons");
function wt_customize_stripe_icons(){
?><style type="text/css">
#payment .payment_methods li img {
float: right;
}
@media only screen and (max-width: 480px) {
.woocommerce-checkout .wc_payment_methods.payment_methods.methods li.payment_method_eh_stripe_pay label img {
max-width: 10%;
}
}
</style><?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment