I'm having a hard time styling the validation error messages - I've adjusted the positioning for the various inputs/fields for the form, and it looks great when there's no errors. But when there are, the whole thing just looks totally wrong with various fields just going completely out of alignment when the errors pop up. Here's some css targeting that I've done that hasn't worked (gravity-last-name is a custom class and the positioning values are exaggerated for testing purposes):
.gravity-last-name .validation_error {
position:relative;
padding: 0px;
margin: 0px;
width: 140px;
top: -300px !important;
}
#field_2_10 .gfield_error {
position:relative;
padding: 0px;
margin: 0px;
width: 140px;
left: -300px !important;
top: -500px !important;
}
18
.gfield_error .validation_message .gravity-last-name {
position: relative;
top: 100px;
}
You can see the form at the bottom of the page: http://wearetuners.com/
Thank you!