vote up 0 vote down star

In firefox, the error messages display as should. Just to the right of the element being validated. In IE. No matter what I do with the sizing of the labels/elements/errors, the error is always posted below the element, causing every other element to be pushed down.

<p>
   <label for="handle"><strong>User Name</strong></label>
   <INPUT NAME="handle" id="handle" VALUE="#attributes.getUser.handle#">
</p>    			
<p>
   <label for="password"><strong>Password</strong></label>
   <INPUT TYPE="TEXT" id="password" NAME="password"
          MAXLENGTH=50 VALUE="#attributes.getUser.password#">
</p>

<p>
    <label for="confirmPassword"><strong>Confirm Password</strong></label>
    <INPUT TYPE="TEXT" id="confirmPassword" NAME="confirmPassword"
           MAXLENGTH=50 VALUE="#attributes.getUser.password#">
</p>

If anyone else has had this issue, i'd be very grateful for any help.

flag

78% accept rate
am I using this code sample wrong? – Gene R Nov 12 '08 at 23:11
You don't need the "print("". You can just indent each line of code by 4 spaces. – Jonathan S. Nov 12 '08 at 23:17

3 Answers

vote up 0 vote down check

I had a style of 'margin-bottom: 16px' set on those input elements.

Removing that (after hours of trial and error and searching) fixed the problem.

Hope that saves someone the hours. ;^)

link|flag
vote up 0 vote down

Have you tried closing your <input> elements?

link|flag
I had not, just did, to no avail. I also have some <select> blocks with closing </select> that have the same adverse results. – Gene R Nov 12 '08 at 23:09
vote up 0 vote down

If you haven't already, you might want to ensure that the page is valid XHTML (I use HTML Validator). That should ensure that all of your elements are properly closed and nested.

Also, have you tried using CSS positioning for the elements, like setting the display to be inline?

Without seeing the code it's difficult to say. If it's a positioning issue, Firebug is usually pretty helpful.

link|flag
Simple as placing "display:inline;" on the label.error style Thanks – Gene R Nov 13 '08 at 19:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.