• Resolved x1seeds

    (@x1seeds)


    Hi, could use some help changing the background color of my WooCommerce Zelle plugin . My checkout page is dark green and the text in the Zelle payment is dark grey. Is there a CSS code or easy way to change the background color in the box to white?

    Greatly appreciate any help with this!

    Kevin

    • This topic was modified 1 year, 1 month ago by x1seeds.

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author The African Boss

    (@theafricanboss)

    Please add the following CSS code to Appearance > Customize > Custom CSS or any other preferred location for Theme CSS like your child theme style.css, etc.

    .payment_box.payment_method_zelle {
    background: white;
    }

    If this code gets overridden by another (i.e. no changes are seen after saving), replace white by white!important

    Thread Starter x1seeds

    (@x1seeds)

    I posted the CSS code and nothing happened. Any other ideas?

    Plugin Author The African Boss

    (@theafricanboss)

    You can also try

    fieldset#wc-zelle-form {
    background: white;
    }

    If no changes are seen after saving, replace white by white!important

    If all fail, let’s meet

    Thread Starter x1seeds

    (@x1seeds)

    That worked perfectly!! ??

    Thank you for your help!

    Thread Starter x1seeds

    (@x1seeds)

    while I have you – is there a way to increase the size of the Zelle logo on the checkout? It’s very small compared to my other payment logos.

    Thanks in advance

    Plugin Author The African Boss

    (@theafricanboss)

    Try the following (adjust the amount of px to a favorable number to you):

    label[for=payment_method_zelle] img {
    width: 100px;
    height: auto;
    }
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change background color on Zelle payment’ is closed to new replies.