This is kind of off topic for this thread, but here's the deal.
The styles aren't a Gravity Forms specific issue, It's a problem with your theme styles. The form is simply inheriting a rule from your theme's (Thesis) layout.css file. If you look at the layout.css file on line 247 you'll see this rule.
[css]
.format_text input,
#commentform input,
#commentform textarea {
width: 45%;
padding: 0.25em;
border-width: 0.083em 0.083em 0.083em 0.083em;
}
That's setting ANY input inside the "format_text" classed div to 45% width. Buttons are inputs, so it's inheriting that rule. The form in the footer doesn't inherit that rule so it doesn't look the same.
You can override that button style by adding this to your custom CSS rules.
[css]
.format_text .gform_wrapper input[type=submit] {width:auto!important}
If you run into any other styling oddities, just search the forums for "Thesis" and you'll find plenty of other threads dealing with the same issues.
Posted 13 years ago on Wednesday June 15, 2011 |
Permalink