views:

86

answers:

1

I am inserting a label after a field to show the user an error message. The problem is after it is first inserted, it's top half is cut off then when you tab out of the field it fixes itself. There is no problem at all in FireFox.

I have deployed the form to: http://thredup.atomicvapor.com/regtest/index.html

I have also posted the code: http://thredup.atomicvapor.com/regtest/regtest.zip

I appologize in advance for the uncommented jQuery. Bad habits die hard.

Thanks for any help you can offer.

+1  A: 

Looks like the problem is that you are spelling position wrong in your css file.

line 69, 76,92...

poisition:relative;

You have one to many i's in there.

Try:

position:relative;

PetersenDidIt
That did it. Such a weird buggy behavior for that mistake. THANKS FOR YOUR HELP!!
ChrisH