Hi everyone!
composerscott’s explanation was ok and works but i would like to make thinks more clearer by telling the most efficient way to do so.
Got to the wp-content -> plugins and get into the contact-form-7 folder. Open the stylesheet.css file and go to the end. Second last code block (i mean the second block before the end) looks like this:
span.wpcf7-list-item {
margin-left: 0.5em;
}
You must only put: display: block; inside and it will be like this:
span.wpcf7-list-item {
margin-left: 0.5em;
display: block;
}
Save and exit. That’s all!!!