Archived topic
Stripe Logos are very big for my site in the checkout
5 replies · Started by Niklas on July 7, 2020
In the past you provided me with this code:
.woocommerce-checkout #payment ul.payment_methods li img {
float: none;
}
.woocommerce img, .woocommerce-page li.payment_method_stripe img {
max-width: 60px;
}
But then also other pictures on the homepage are affected
Hi there,
Thy changing this line:
.woocommerce img, .woocommerce-page li.payment_method_stripe img {
to:
.woocommerce-page li.payment_method_stripe img {
It's better, but the logos are still really big.
Remove your other CSS and use this:
.woocommerce-checkout #payment ul.payment_methods li img {
float: none;
max-width: 60px;
}
Works! Thanky you!
You're welcome