Hello, when a new customer places a new order the checkout credit card field looks fine. But when it’s an existing customer with an existing payment method, the manage payment method button overcrowds the rest of the information. Is it possible to fix?
Hey marqattack,
Thanks for the screenshot, how can we reproduce the problem?
Best regards,
Rikard
Hi, Rikard
Sure. Click on the link I’ve included below to add something to the cart, then login using the username and password I’ve included privately. I think if the two circle things (radio buttons?) could be moved to the right a little (or below) it will look better, but it’s right next to the “manage payment methods” button.
I appreciate you taking a look! :)
Edward
Hi,
Thanks for that. Please try this in Quick CSS:
.woocommerce-checkout #payment div.payment_box .sv-wc-payment-gateway-payment-form-manage-payment-methods {
margin-right: 20px;
}
Best regards,
Rikard
Hi, it doesn’t seem that snipped fixed the issue. the saved payment methods and radio buttons are still directly touching the button for some reason.
Hi marqattack,
Can you try using this code:
.woocommerce-checkout #payment div.payment_box .sv-wc-payment-gateway-payment-form-manage-payment-methods {
float: none;
width: 220px;
}
Hope it helps.
Clearing browser cache might be needed to fetch the new css style.
Best regards,
Nikko
That worked. Thank you so much! You’re the best! :)