Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author GusRuss89

    (@gusruss89)

    Hi @nemovich,

    Your theme has this CSS which is preventing the checkboxes from being clicked.

    input[type="radio"], input[type="checkbox"] { display: none; }

    To fix that, add the following CSS under Appearance > Customize > Material Design Forms > Custom CSS.

    #cf7md-form input[type="radio"],
    #cf7md-form input[type="checkbox"] {
        display: block;
    }

    Your theme also cuts off the focus rings because it hides the overflow on the form. To fix this, add the following CSS to the same place as the above.

    .wpcf7-form {
        overflow: visible !important;
    }

    Thanks,
    Angus

    Thread Starter nemovich

    (@nemovich)

    It worked ! Thank you very much, 5 stars for your plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Checkbox not working’ is closed to new replies.