0

Build a form Contact us by EMAIL me form I uploaded it to my server, and I want to change the CSS file the error location (when you click on the submit button, then all fields not filled properly marked an error - red) My question is simple: How do I can change the CSS file so that the error diaphragm on the left and not on the right? Thank you!

The form is in this link: http://lawb.co.il/HTMLPage.html

the CSS file is in this link: http://lawb.co.il/contact_us.css

You can see example for what I want here: enter image description here insted of this enter code here

Is is possible?

4

2 回答 2

2

添加promptPosition:"topLeft"contact.js:

EMF_jQuery("#emf-form").validationEngine({
                validationEventTriggers:"blur",
                scroll:true,
                promptPosition: "topLeft"
        });

CSS 中的这些行:

   .formError {
   ...
   left: 360px !important;
   ...
   }

   .formError .formErrorContent {
   ...
   width: 310px !important;
   ...
   }

   formError .formErrorArrow {
   ...
   left: 70%;
   ...
   }

它应该工作。

于 2012-09-15T10:07:40.723 回答
0

尝试这个

            align:left;

或者

            float:left;
于 2012-09-15T09:59:37.223 回答