Hi Peter,
Thanks for responding. Currently, in the developer mode errors aren’t shown. I will definitely pass on the idea of enabling error checking.
If you’re trying to style the error messages, that can be done in the css. Basically when an error is returned it’s added in the <div> with the class ‘updated’ inside the form directly above the fields. When an error occurs, a <span> is inserted in that div. It looks something like this:
<span class="mc_error_msg">? You must fill in First Name.<br /></span>
<span class="mc_error_msg">? That email address is invalid.<br /></span>
By default the color is set to red. But you can change it to another color or change the fonts by adding some css similar to this.
#mc_signup .mc_error_msg {
color: blue;
font-family: serif;
}
Let us know if you have any other questions.
-mc_d