Hi,
I see what you mean now.
There is no built-in way to do that, but here’s how you can do it with some custom form code and CSS.
Your form code should be:
<div class="label-inline-radio">
[md-radio label="Have you ever been issued a U.S. Visa?" display="inline"]
[radio HaveyoueverbeenissuedaUSVisa "Yes" "No"]
[/md-radio]
</div>
And you can add this custom CSS under Appearance > Customise > Material Design Forms:
#cf7md-form .label-inline-radio .cf7md-label {
float: left !important;
width: auto !important;
max-width: 50% !important;
margin-right: 20px !important;
}
#cf7md-form .label-inline-radio .wpcf7-form-control-wrap {
overflow: hidden;
width: auto !important;
}
Note: I changed your checkboxes to radios. With checkboxes, both options could be ticked (e.g. yes AND no). With radios, only a single option can be ticked.
Let me know if you need any further help.
Thanks,
Angus