My forms aren't showing up correctly on my site. The 'top-aligned' label placement isn't displaying as it should.
I also cannot figure out how to move the required label asteriks to the right of the words.
My forms aren't showing up correctly on my site. The 'top-aligned' label placement isn't displaying as it should.
I also cannot figure out how to move the required label asteriks to the right of the words.
Hey there, it looks like your theme is making some generic CSS calls. For example in your style.css you have:
[css]
label {
margin-top: 5px;
padding-right: 15px;
float: left;
width: 150px;
}
form li span {
color: #444;
float: left;
margin: 0 4px 0 0;
padding: 0 0 14px;
}
We need to remove the floats. Try placing this into your theme's stylesheet, this will affect only Gravity Forms so you can retain the above styles if they are in use elsewhere.
[css]
.gform_wrapper .top_label .gfield_label {
float: none !important;
}
.gform_wrapper .gfield_required {
float: none !important;
}
Thank you! Case resolved.
Great, thanks for letting us know!