I have selected to use a checkbox in one of my forms. Unfortunately, each checkbox is aligned next to one another. How do I have each checkbox on it's own individual line?
I have selected to use a checkbox in one of my forms. Unfortunately, each checkbox is aligned next to one another. How do I have each checkbox on it's own individual line?
That requires some CSS tweaks. There is no generic answer, it depends on your theme. If you can post a URL to the form you will get specific advice.
If you want to try a generic solution to see if it works, add this to your theme's stylesheet. At the bottom would be fine. It might affect more than the fields you want on separate lines. If so just remove it from the stylesheet.
.wpcf7-list-item {
display: block;
}This topic has been closed to new replies.