Hi I hope you're familiar with Mailchimp

I just would like to know how can I have this code the same indention:

 <p>[+MailChimp.message+]</p>
 <form method="post" action="[~[*id*]~]">
 <label>First Name: <input type="text" name="mc_FNAME" value="" /></label><br />
 <label>Last Name: <input type="text" name="mc_LNAME" value="" /></label><br />
 <label>Email: <input type="text" name="mc_EMAIL" value="" /></label><br />
 <label>Website: <input type="text" name="mc_URL" value="" /></label><br />
 <input type="submit" name="subscribe" value="Subscribe" />
 </form>

if you can check this the box of the email is near to the word "email" and i would like to have them in one row.

Thanks

==== Nifle

how can I define the indention of the boxes? thanks

link|improve this question

76% accept rate
For those of you that aren't...mailchimp.com – Rob Cowell Aug 5 '10 at 15:20
feedback

1 Answer

up vote 1 down vote accepted

I have no idea what Mailchimp is capable of but perhaps a table might work?

<p>[+MailChimp.message+]</p>
 <form method="post" action="[~[*id*]~]">
  <table>
   <tr><td><label>First Name:</td>
       <td><input type="text" name="mc_FNAME" value="" /></label></td></tr>
   <tr><td><label>Last Name:</td>
       <td><input type="text" name="mc_LNAME" value="" /></label></td></tr>
   <tr><td><label>Email:</td>
       <td><input type="text" name="mc_EMAIL" value="" /></label></td></tr>
   <tr><td><label>Website:</td>
       <td><input type="text" name="mc_URL" value="" /></label></td></tr>
 </table>
 <input type="submit" name="subscribe" value="Subscribe" />
</form>
link|improve this answer
thanks for the code. but when i tried this, my cms is getting an error. i don't know why... actually this is what I wanted to have on the page, but as I start to enter my first, last and the email address it's not working :-( – tintincutes Aug 5 '10 at 16:20
feedback

Your Answer

 
or
required, but never shown

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