dividing multi-checkbox form field into three columns

Hi David,

Please add the below JS in your template or Form through rich text -

<script>
$(window).load(function(){
var counter=0;

$(“.hs-form__row”).each(function(){
counter++;
var self=$(this);
self.addClass(“row_”+counter);
});
});

</script>

And, then use this CSS -

.row5 .hs-form__field__options__container {
column-count: 3;
}

Please refer to the attached screenshot -

Thanks!

Jasbir