Thanks Problem Sorted

4 replies
I've always thought I could find my way around HTML but this defeats me

<center><form method="post" action="http://www.aweber.com/scripts/addlead.pl">
<input type="hidden" name="meta_web_form_id" value="1460370708">
<input type="hidden" name="meta_split_id" value="">
<input type="hidden" name="unit" value="africhef">
<input type="hidden" name="redirect" value="http://www.africhef.com/African-Recipes-Thanks.html" id="redirect_7bfcd5d538821ddc689fb9e1bf0273dd">
<input type="hidden" name="meta_redirect_onlist" value="">
<input type="hidden" name="meta_adtracking" value="">
<input type="hidden" name="meta_message" value="1">
<input type="hidden" name="meta_required" value="from,name">
<input type="hidden" name="meta_forward_vars" value="0">
<table>
<tr><td colspan=2><center><div>&nbsp;</div></center></td></tr>
<tr><td>Email:</td><td><input type="text" name="from" value="" size="20"></td></tr>
<tr><td>First Name:</td><td><input type="text" name="name" value="" size="20"></td></tr>
<tr><td colspan=2><center></center></td></tr>
<tr><td align="center" colspan="2"><input type="submit" name="submit" value="Submit"></td></tr>
</table>
</form>

<img src="http://forms.aweber.com/form/displays.htm?id=jCxsDMzsDOwMHA==" border="0" />
</center>

This is an Aweber form which has the Email & First Name at the side of the input boxes
I want them on top and the boxes to be 160pixels wide

I'd appreciate anyone telling me what to change to get the desired result

Thanks

Michael
#day #html #questions #today
  • Profile picture of the author gyar29
    Michael,

    Try this code. The inline css for the text table rows is for firefox. Will work in IE without or with it.

    Code:
    <center><form method="post" action="http://www.aweber.com/scripts/addlead.pl">
    <input type="hidden" name="meta_web_form_id" value="1460370708">
    <input type="hidden" name="meta_split_id" value="">
    <input type="hidden" name="unit" value="africhef">
    <input type="hidden" name="redirect" value="http://www.africhef.com/African-Recipes-Thanks.html" id="redirect_7bfcd5d538821ddc689fb9e1bf0273dd">
    <input type="hidden" name="meta_redirect_onlist" value="">
    <input type="hidden" name="meta_adtracking" value="">
    <input type="hidden" name="meta_message" value="1">
    <input type="hidden" name="meta_required" value="from,name">
    <input type="hidden" name="meta_forward_vars" value="0">
    <table>
    <tr><td colspan=2><center><div>&nbsp;</div></center></td></tr>
    <tr style="text-align:center"><td>Email:</td></tr><tr><td><input type="text" name="from" value="" style="width:160px"></td></tr>
    <tr style="text-align:center"><td>First Name:</td></tr><tr><td><input type="text" name="name" value="" style="width:160px"></td></tr>
    <tr><td colspan=2><center></center></td></tr>
    <tr><td align="center" colspan="2"><input type="submit" name="submit" value="Submit"></td></tr>
    </table>
    </form>
    
    <img src="http://forms.aweber.com/form/displays.htm?id=jCxsDMzsDOwMHA==" border="0" />
    </center>
    Gene
    {{ DiscussionBoard.errors[672238].message }}
    • Profile picture of the author JustaWizard
      I take the code into Dreamweaver and make all the changes you talked about there, very easy to do. I suppose any WYSIWYG html / web program will do.

      Best,
      David
      {{ DiscussionBoard.errors[672251].message }}
    • Profile picture of the author xiaophil
      Gene beat me to it.
      I think your table only needs one column, and not sure whether you wanted the headings centered. Much the same anyway:

      <table>
      <tr><td><center><div>&nbsp;</div></center></td></tr>
      <tr><td>Email:</td><tr>
      <tr><td><input type="text" name="from" value="" style='width:160px;'></td></tr>
      <tr><td>First Name:</td></tr>
      <tr><td><input type="text" name="name" value="" style='width:160px;'></td></tr>
      <tr><td><center></center></td></tr>
      <tr><td align="center"><input type="submit" name="submit" value="Submit"></td></tr>
      </table>

      Phil
      {{ DiscussionBoard.errors[672259].message }}
  • Profile picture of the author Michael Tracey
    \Thanks Guys, much appreciated

    Michael
    {{ DiscussionBoard.errors[672292].message }}

Trending Topics