Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #272284

    Alexei K
    Participant

    Hi there,

    Can you please help me change colors for valid and invalid entries on Woocommerce checkout page? Lord knows I tried… 🙂

    Thanks!

    #272286

    Alexei K
    Participant
    This reply has been marked as private.
    #272418

    Thai
    Moderator

    Hi There,
    Thanks for writing in!
    Try adding following CSS under Appearance > Customize > Custom > CSS:

    /* invalid */
    .woocommerce-invalid input {
      color: #CDB619;
      border-color: #CDB619;
    }
    /* valid */
    .woocommerce-validated input {
      color: #3C80C3;
      border-color: #3C80C3;
    }

    Hope it helps.

    #272456

    Alexei K
    Participant

    Hi there,

    Thank you very much 🙂

    #272535

    Thai
    Moderator

    You’re most welcome.