I can't find that CSS in your stylesheet but it appears you have added the following to your theme's style.css file which is floating your labels left.
.gform_wrapper .top_label .gfield_label {
display: block;
float: left;
padding-right: 20px;
width: 100px;
margin: 5px 0px 4px !important;
}
This is the hard way to go about this, delete that rule then go to your form settings and change the label placement to 'left aligned', that will automatically put your labels to the left of your fields and make the label wider. You can then add the following to your stylesheet to increase the bottom margin if required.
.gform_wrapper .gfield {
margin-bottom: 30px !important;
}
Regards,
Richard
Posted 11 years ago on Sunday June 2, 2013 |
Permalink