Editing/ reformatting long list of values on a form

Tom_Kerlin2
Level 8

Re: Editing/ reformatting long list of values on a form

Hi Sanford,

Thanks for clearing that up. I posted a link to the landing page in case you want to view the source code.

Tom Kerlin
Dan_Stevens_
Level 10 - Champion Alumni

Re: Editing/ reformatting long list of values on a form

Erin, I believe this is a single field (not a field per checkbox).

Tom_Kerlin2
Level 8

Re: Editing/ reformatting long list of values on a form

Here's the link to the landing page where I want to reformat the form: https://info.dh.com/GCProgram-Registration.html

If you know a quick way to resolve please let me know!

Tom Kerlin
Grégoire_Miche2
Level 10

Re: Editing/ reformatting long list of values on a form

Hi Tom,

add

#mktoForm_64 .mktoCheckboxList .mktoField {

    float: left !important;

    clear: none !important;

}

#mktoForm_64 .mktoCheckboxList label {

    width: 31% !important;

    float: left !important;

    margin-left: 5px !important;

}

-Greg

Tom_Kerlin2
Level 8

Re: Editing/ reformatting long list of values on a form

Thanks Greg,

The top row looks pushed to the right a little...

pastedImage_0.png

Tom Kerlin
Grégoire_Miche2
Level 10

Re: Editing/ reformatting long list of values on a form

Hi Tom,

You will probably have to tune a bit the CSS , I am off for tonight.

-Greg

Tom_Kerlin2
Level 8

Re: Editing/ reformatting long list of values on a form

The final code looks like this:

#mktoForm_64 .mktoCheckboxList .mktoField {
display:none !important;
width:20px !important;
float:left !important;
}
#mktoForm_64 .mktoCheckboxList label {
width:26% !important;
float:left !important;
margin-left: 20px !important;
}

Tom Kerlin
Grégoire_Miche2
Level 10

Re: Editing/ reformatting long list of values on a form

Nice