Tim,
If you want to move sublabels you'll need to rely on some jQuery to do so. See this:
http://www.gravityhelp.com/forums/topic/change-position-of-sub-labels-on-advanced-fields#post-179801
Or you can use this CSS fix below to override the theme style that's placing a bottom margin on your inputs.
Just place in your theme's stylesheet (or wherever you are instructed to place custom CSS at the theme level).
[css]
.gform_wrapper input[type=text], .gform_wrapper input[type=url], .gform_wrapper input[type=email], .gform_wrapper input[type=tel], .gform_wrapper input[type=number], .gform_wrapper input[type=password] {
margin-bottom: 0;
}
Posted 11 years ago on Tuesday June 25, 2013 |
Permalink