Kevin answered your validation message question here:
http://forum.gravityhelp.com/topic/custom-styling-question#post-11516
As for your submit button issue, this is because you have the form appearing in a container that is set to overflow: hidden. Not only is the submit button hidden because of this, but any part of the form that falls below the available space for that container is also hidden. This is unavoidable with a container that is set to overflow hidden.
You would have to tweak the styles for this form so that even with errors it still fits within the available space of the container it is in that has overflow: hidden; applied to it.
You could start by hiding the individual field validation messages with something like this:
#gform_1 validation_message {display: none;}
But you may need to tweak some more to make it work with how you have it implemented.
Posted 14 years ago on Friday October 22, 2010 |
Permalink