SOLVED

Need Custom CSS to Alter Specific Form Field, not just the Field Type

Go to solution
Tom_Kerlin2
Level 8

Hi all,

I'm using the following custom CSS code to split my long list of values (classified as a checkboxes field type) into 3 columns on one of my forms...

pastedImage_0.png

This code works great, but I'm now adding another Field that's under the same field type category (i.e. checkboxes) and this code is also splitting the new list of values into 3 columns, which I don't want (Screenshot below).

pastedImage_1.png

Please post sample code you think might solve or if there is a simpler workaround for this please let me know!

Any help is appreciated!  Thanks!

-Tom

Tom Kerlin
1 ACCEPTED SOLUTION
SanfordWhiteman
Level 10 - Community Moderator

The current set of checkboxes is .mktoFormRow:nth-of-type(6). Thus with

.mktoFormRow:nth-of-type(6) .mktoCheckboxList LABEL {

  outline: 1px solid red;

}

you get

pastedImage_1.png

View solution in original post

10 REPLIES 10