JQuery Validation Plugin label.error position
Hi All,
This is a reall CSS 101 question:
I'm trying to get the error label to position right underneath the textbox it's related to. However, it just doesn't want to move.
I've tried relative/absolute positioning, but whatever I do it drops the join button down.
I know I'm doing something totally stupid. I just wish I could see where!!
Any help would be greatly appreciated.
Regs,
Numb
- <style type="text/css">
- div#emailwrap {position:relative; height:60px;width:350px;}
- div#emailwrap label.error {postion:absolute; bottom:0; left:0;color: red; font-size:10px; width:100px; height:25px; }
</style>
- <form action="xxxxxx" id="emailForm" method="post">
- <div id="emailwrap">
- <label class="frmMailList-label">Email</label>
- <input name="frmMailList" type="text" class="frmMailList required email"/>
- <input name="imageField" type="image" id="imageField" src="img/but-join.png" align="middle" />
- </div>
</form>