Amending Getresponse opt-in Code

by vnr406
2 replies
Hi guys,

Can anyone help me out?

I have some getresponse opt-in code but I want the name, email and submit boxes to run
across the page and not down as the code is set.

Is it just a case of amending the table/cell tags?

What is the fix?

I have included the test code below

Thanks so much for your input.

Regards

Vince

<!-- GetResponse subscription form | start -->

<form action="getresponse/cgi-bin/add.cgi" method="post" id="GRSubscribeForm" accept-charset="UTF-8">
<fieldset>
<table>


<tr>
<td>
<label for="GRCategory2"> Name</label>
:
</td>
<td><input type="text" name="category2" size="14" id="GRCategory2" /></td>
</tr><tr>
<td><label for="GRCategory3"> E-Mail</label>
:</td>
<td><input type="text" name="category3" size="14" id="GRCategory3" /></td>
</tr>

</table>
<p>
<input type="submit" value="Submit!" />
</p>
<p>
<input type="hidden" name="category1" value="test" />
<input type="hidden" name="confirmation" value="mydomain"/>
<input type="hidden" name="ref" value="000" />
<input type="hidden" name="getpostdata" value="get" />
</p>
</fieldset>
</form>
<style>
<!--
/* form box */
#GRSubscribeForm fieldset {
width: 260px;
border: 0;
}

/* comment about GetResponse */
#GRSubscribeForm p {
font-size: x-small;
}

/* table used to position form elements */
#GRSubscribeForm table {
border: 0;
}

-->
</style>
<!-- GetResponse subscription form | end -->
#amending #code #getresponse #optin
  • Profile picture of the author scraggz
    Yep, change this portion of the code below

    <label for="GRCategory2"> Name</label>
    :</td>
    <td><input type="text" name="category2" size="14" id="GRCategory2" /></td>

    <td><label for="GRCategory3"> E-Mail</label>
    :</td>
    <td><input type="text" name="category3" size="14" id="GRCategory3" /></td>
    <td><input type="submit" value="Submit!" /></td>
    </tr>
    </table>

    get rid of the </tr><tr> tags between the name and email. Move the submit line above the
    </tr>

    </table>
    and enclose in <td> & </td> tags.
    Signature

    {{ DiscussionBoard.errors[956793].message }}
    • Profile picture of the author vnr406
      Stan,

      Thank you so much for your help.

      Much appreciated, you have saved tearing more hair out!!

      Cheers

      Vince
      {{ DiscussionBoard.errors[956851].message }}

Trending Topics