Home > OS >  stripe payment icons on small wordpress
stripe payment icons on small wordpress

Time:09-23

I ask for advice on how to reset my problem on wordpress. I have a problem with the stripe payment, as you can see on my website www.bmhotellerie.it during the stripe payment the icons are small and you cannot enter the payment data correctly, ask for advice on how to increase the icons. I kindly ask for all the changes to be made step by step.

CodePudding user response:

Add following css in your theme style css file.

#stripe-payment-data p.form-row.woocommerce-SavedPaymentMethods-saveNew,
#stripe-payment-data #wc-stripe-cc-form .form-row {
    display: block;
}
  • Related