Fair enough. I found it useful to have the field validations under the field they referred to, and to have a message at the top saying something like "Your form does not appear to be completed. Please scroll down and look for the error messages in red and try again".
A possible quick way to move the validation messages to the top would be to use CSS...
| Code: |
.formError {
position:absolute;
top:0;
}
|
Of course if there was more than one error they would overlap (although you could use the span id to shift each validation message up or down separately so they don't), could work for a small form...but probably wouldn't be ideal for a long one!
Jen