Apply CSS for a specific field on Formstack

141 Views Asked by At

I was trying to span the checkbox field in 3 columns on this form - https://learningcurve.formstack.com/forms/list_of_banks\

So, I wrote

.fsBody .fsForm .fsFieldCell {
    column-count:3;
}

But it spans all the similar fields into 3 columns. I need to span only one specific field to span to 3 columns. I believe that is something to do with the field id. How do I implement it?

1

There are 1 best solutions below

2
On

I looked at the example you have linked and it seems you changed the wrong element to 3 columns.

Try this code instead and see if it works for your issue.

.fsBody .fsForm .fsFieldCell .fieldset-content{
  column-count:3;
}