• Hello,

    On line 3092 of Bentos style.css there is this rule:

    
     .woocommerce-checkout .payment_methods .wc_payment_method img {
           display: none;
     }
    

    This hides the payment method images. I had only empty white bordered boxes where the payment methods should have been, and I had to manually override it in custom css with

    
     .woocommerce-checkout .payment_methods .wc_payment_method img {
           display: inline-block;
    }
    

    It seems strange to me that the images are hidden by default. So, is this a correct fix, or is there some other reason why they were hidden?

    • This topic was modified 5 years, 10 months ago by unski.
    • This topic was modified 5 years, 10 months ago by unski.

The topic ‘Payment method images hidden’ is closed to new replies.