Those sublabels are not normally so far away from the inputs. That is being done by some CSS in your theme's stylesheet. Line 130 in this file http://74.54.146.34/~durando/talkmortgages.ca/wp-content/themes/avamys/css/base.css?ver=3.5.1
[css]
input[type="text"], input[type="password"], input[type="email"], textarea, select {
display: block;
margin: 0 0 20px;
outline: medium none;
padding: 6px 4px;
}
You can override that by adding this to one of your theme's stylesheets.
[css]
body .gform_wrapper form input {
margin-bottom: 0px;
}
Screenshot: http://minus.com/lbj2NztkVca3Bw
If you want to put the sublabel above the input, with the regular label, we can do that too, but it might be confusing to have two labels above the field for some fields. Sometimes people put the label inside the field as a placeholder, then move the sublabel above the input. If you want to go that direction, we can help with that as well.
Posted 11 years ago on Tuesday March 26, 2013 |
Permalink