I am using jQuery form validation using validation plugin. I have validate the password with minimum 7 characters and one capital and oe number.at the same time when i meet
There is a nice example of using an image when displaying the error here
http://jquery.bassistance.de/validate/demo/custom-methods-demo.html
It uses this css to how an image for the error
em.error {
background:url("images/unchecked.gif") no-repeat 0px 0px;
padding-left: 16px;
}
note this example has set
errorElement: "em"
so the css works, but look through the source and try it out