Okay, so quick debugging tip. If it works/displays properly in the preview window and not when you publish the form, 99.9% of the time it's a theme-related issue. That's just good to know to start.
That said, I looked at your theme CSS and found that your theme stylesheet disables the border on all elements by using the star * selector (style.css line 2). That is effectively disabling the form input borders. If you toggle that rule off, you'll see that the form displays correctly
screenshot: http://d.pr/mN4d
You can add this to the end of your theme stylesheet and it should override the blanket rule.. you can tweak it to your preference.
[css]
body .gform_wrapper input[type=text],
body .gform_wrapper input[type=tel],
body .gform_wrapper input[type=url],
body .gform_wrapper input[type=email],
body .gform_wrapper input[type=file],
body .gform_wrapper input[type=password],
body .gform_wrapper input[type=number],
body .gform_wrapper select,
body .gform_wrapper textarea {
border:1px solid #ccc;
}
Posted 13 years ago on Thursday April 14, 2011 |
Permalink