digitz
Member
Posted 6 months ago #
I have various check boxes with a checkbox at the top which has the label "All Items".
What I need is for the form to check all the below checkboxes when I click on the All Items checkbox.
1. How can I do this?
2. How can I display all the checkboxes vertically?
hellosnitty
Member
Posted 2 months ago #
I have a similar problem. I cannot get my form to let the filler check more than one checkbox.
BUT...to make the checkboxes display vertically do this.....
Go to your Plugins and under Contact 7 click Edit
Go in your stylesheet.css
scroll down to the next to last code block.
It should look like this:
}
span.wpcf7-list-item {
margin-left: 0.5em;
}
Change that to look like this:
}
span.wpcf7-list-item {
margin-left: 0.5em;
display: block;
}
Save and youre done!! :)
Let me know if you figure that out about the checkboxes!
Good Luck
digitz
Member
Posted 2 months ago #
Thanks,
But that would be a site-wide modification. What if I want the check boxes to appear vertically in one single form?