what's with this method surrounding the hidden fields in a <div>? <div> is a block-level element and would potentially add a line break wherever a Form is placed.

i typically style my <form> tags as
 form {
   display:inline;
   margin:0;
   padding:0;
 }

to prevent them adding any whitespace, so this new <div> caused unexpected results. is it there for xhtml validation compliance? if so, perhaps add an inline style to it:

 <div style="display:none;">
   <input type="hidden" ...
 </div>

thoughts?

thanks,
jeff


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to