6 replies
ISSUE SOLVED -- THANKS TO ALL!

Hi all,

I wanted to format my optin box to display the name form, email form and submit button on 1
page, I contacted aweber support but they do not offer html editing support.

Does anyone know how to get it all on 1 line. I know there are pieces of code to delete,
but I'm not having luck.

Here's the sample code:

<form method="post" action="http://www.aweber.com/scripts/addlead.pl">
<input type="hidden" name="meta_web_form_id" value="">
<input type="hidden" name="meta_split_id" value="">
<input type="hidden" name="unit" value="code">
<input type="hidden" name="redirect" value="http://www.msn.com">
<input type="hidden" name="meta_adtracking" value="">
<input type="hidden" name="meta_message" value="1">
<input type="hidden" name="meta_required" value="name,from">
<input type="hidden" name="meta_forward_vars" value="1">
<table>
<tr><td colspan=2><center></center></td></tr>
<tr><td><FONT face="arial, arial" size=3>First Name:</FONT></td><td><input type="text" name="name" value="" size="30"></td></tr>
<tr><td><FONT face="arial, arial" size=3>Favorite eMail:</FONT></td><td><input type="text" name="from" value="" size="30"></td></tr>
<tr><td align="center" colspan="2"><INPUT type=image height=88 alt="Submit Form" width=197
src="http://www.warriorforum.com/images/send.jpg" border=0></td></tr>
</table>
</form>

Thanks for any help

Regards,
Michelle
#aweber #form
  • Profile picture of the author Josh Fulfer
    Try something like this:


    <form method="post" action="http://www.aweber.com/scripts/addlead.pl">
    <input type="hidden" name="meta_web_form_id" value="">
    <input type="hidden" name="meta_split_id" value="">
    <input type="hidden" name="unit" value="code">
    <input type="hidden" name="redirect" value="http://www.msn.com">
    <input type="hidden" name="meta_adtracking" value="">
    <input type="hidden" name="meta_message" value="1">
    <input type="hidden" name="meta_required" value="name,from">
    <input type="hidden" name="meta_forward_vars" value="1">
    <table>
    <tr><td colspan=2><center></center></td></tr>
    <tr><td><FONT face="arial, arial" size=3>First Name:</FONT></td><td><input type="text" name="name" value="" size="30">
    <FONT face="arial, arial" size=3>Favorite eMail:</FONT></td><td><input type="text" name="from" value="" size="30"><INPUT type=image height=88 alt="Submit Form" width=197
    src="images/send.jpg" border=0></td></tr>
    </table>
    </form>


    I just put it all in the same table by removing the </td>'s and stuff.
    {{ DiscussionBoard.errors[827556].message }}
  • Profile picture of the author Devon Brown
    You want the name, email, and submit button all on one line? If that's what you want... here it is. If this isn't what you wanted, let me know

    <form method="post" action="http://www.aweber.com/scripts/addlead.pl">
    <input type="hidden" name="meta_web_form_id" value="">
    <input type="hidden" name="meta_split_id" value="">
    <input type="hidden" name="unit" value="code">
    <input type="hidden" name="redirect" value="http://www.msn.com">
    <input type="hidden" name="meta_adtracking" value="">
    <input type="hidden" name="meta_message" value="1">
    <input type="hidden" name="meta_required" value="name,from">
    <input type="hidden" name="meta_forward_vars" value="1">
    <FONT face="arial, arial" size=3>First Name:</FONT><input type="text" name="name" value="" size="30">&nbsp;
    <FONT face="arial, arial" size=3>Favorite eMail:</FONT><input type="text" name="from" value="" size="30">&nbsp;
    <INPUT type=image height=88 alt="Submit Form" width=197
    src="images/send.jpg" border=0>
    </form>
    {{ DiscussionBoard.errors[827564].message }}
  • Profile picture of the author MichelleGreene
    Josh, You're my hero -- thanks...
    it worked great...

    thanks for your expertise,

    Regards,
    Michelle
    {{ DiscussionBoard.errors[827573].message }}
  • Profile picture of the author MichelleGreene
    Also, thanks to you success Renegade,

    I knew I could count on the warrior forum -- you guys ROCK!!!
    {{ DiscussionBoard.errors[827576].message }}
  • Profile picture of the author Josh Fulfer
    No problem, glad I could help.
    {{ DiscussionBoard.errors[827613].message }}
  • Profile picture of the author IMDimWit
    I was just looking for the same html code, did a quick search on the Warrior forum and here it is... Ditto that Warriors Rock!!!
    {{ DiscussionBoard.errors[976200].message }}

Trending Topics