All my li created in the gravity forms are showing like this:
http://www.brunoatwork.com/li-form.png
Any clue why?
All my li created in the gravity forms are showing like this:
http://www.brunoatwork.com/li-form.png
Any clue why?
It is because of CSS that is in your theme styling list items that way.
You would have to post a link to a form we could view in our browser so we could tell you what is causing it.
Hi there Carl.
Thx for the reply.
Here's the url: http://www.caramelo.com.pt/wp-site/cancao-inquerito/
user: gravity
pass: formtest
Hope to ear from you soon.
Thx.
Hi Bruno,
If you take a peek at your layout.css file around line 423, there is a height specified on all input fields inside of the .gform_body class. The checkbox fields are inputs and this extra height is what is causing them to display oddly.
What you'll want to do is reset the height the checkbox fields (and your multiple choice fields too, just in case you use them) with some additional css like so:
.gform_wrapper .gfield_checkbox li input[type="checkbox"], .gform_wrapper .gfield_radio li input[type="radio"] {
height:auto;
}
This snippet would go in your layout.css file.