Hi @sak86,
It’s not currently possible out-of-the-box, it’s been on my to-do list for a while and may eventually be added as a feature.
Depending on how long the text is for each checkbox, you might be able to do it with some custom CSS. (Longer text often makes it harder to align the columns nicely)
In Customise > Material Design Forms > Custom CSS, try adding something like the following:
@media (min-width: 768px) {
#cf7md-form .cf7md-checkbox-item {
width: calc(50% - 20px);
padding-right: 20px;
}
}
The above would apply to all of your checkbox fields. If you only want it to apply to one, replace #cf7md-form .cf7md-checkbox-item {
with #cf7md-form .[[checkbox-name]] .cf7md-checkbox-item {
, where [[checkbox-name]] is the name that you use in your email template to display the field.
Thanks,
Angus