9 replies
  • WEB DESIGN
  • |
I am trying to place an email sign up form on my website, I cannot seem to be able to alter its size to fit in my sidebar. Are these able to be modified?
#email #forms #sign
  • Profile picture of the author iBBnet
    Yes, they can be modified? You might want to post the code of the signup form so we can take a look.

    Also, what is the width of your sidebar?
    Signature
    Bryan
    After5PC.net
    Freelance Web Development
    and Graphic Design Services
    {{ DiscussionBoard.errors[997786].message }}
  • Profile picture of the author $Layla$
    Yes as IBBnet above has said, most of these are easily modified. If you could post the code you are using and the width of your sidebar (and the length as well if you are shooting for a specific dimension), then I'm certain some of us could help you out fairly quickly.
    {{ DiscussionBoard.errors[998962].message }}
  • Profile picture of the author suneelkumar85
    Yes, they can be modified? You might want to post the code of the signup form so we can take a look.

    Also, what is the width of your sidebar?
    -------------------------------------------------
    Buildings and Contents Insurance
    managed services solutions
    {{ DiscussionBoard.errors[999219].message }}
  • Profile picture of the author iconoclast
    Thank you. Here is what they have given me to post to my site. My sidebar is 220 px.

    #SignUp .signupframe {
    border: 1px solid #060000;
    background: #405152;
    color: #ABECF5;
    font-family: Arial, Helvetica, sans-serif;

    <script type="text/javascript" src="http://app.icontact.com/icp/loadsignup.php/form.js?c=522222&l=27552&f=3590"></script>
    {{ DiscussionBoard.errors[1000780].message }}
  • Profile picture of the author iconoclast
    This is the manual style code I was given from my autoresponder provider. Do I need to post all this code in my html doc., minus the css rules?<style>
    .signupframe {
    border: 1px solid #060000;
    background: #405152;
    color: #ABECF5;
    font-family: Arial, Helvetica, sans-serif;
    }
    </style>
    <form method=post action="https://app.icontact.com/icp/signup.php" name="icpsignup" accept-charset="UTF-8"

    onsubmit="return verifyRequired();" >
    <input type=hidden name=redirect value="http://www.icontact.com/www/signup/thanks.html" />
    <input type=hidden name=errorredirect value="http://www.icontact.com/www/signup/error.html" />
    <script type="text/javascript">

    if (document.location.protocol === "https:")

    document.icpsignup.action = "https://app.icontact.com/icp/signup.php";
    function verifyRequired() {
    if (document.icpsignup["fields_email"].value == "") {
    document.icpsignup["fields_email"].focus();
    alert("The Email field is required.");
    return false;
    }


    return true;
    }
    </script>
    <div id="SignUp">
    <table width="260" class="signupframe" border="0" cellspacing="0" cellpadding="5">
    <tr>
    <td valign=top align=right>
    <font size="1" face="Arial,Helvetica, sans-serif">*</font> <font size="2">Email</font>
    </td>
    <td align=left>
    <input type=text name="fields_email">
    </td>
    </tr>
    <td valign=top align=right>
    <font size="2">First Name</font>
    </td>
    <td align=left>
    <input type=text name="fields_fname">
    </td>
    </tr>
    <input type=hidden name="listid" value="50185">
    <input type=hidden name="specialid:50185" value="2D3P">

    <input type=hidden name=clientid value="522222">
    <input type=hidden name=formid value="3590">
    <input type=hidden name=reallistid value="1">
    <input type=hidden name=doubleopt value="0">
    <TR>
    <TD> </TD>
    <TD><font size="1">*</font><font size="2"> = Required Field</FONT></TD>
    </TR>
    <tr>
    <td> </td>
    <td><input type="submit" name="Submit" value="Submit"></td>
    </tr>
    </table>
    </div>
    </form>
    {{ DiscussionBoard.errors[1002575].message }}
    • Profile picture of the author Aronya
      Originally Posted by iconoclast View Post

      <table width="260" class="signupframe" border="0" cellspacing="0" cellpadding="5">
      A quick look at the code suggests this is the place to start.
      {{ DiscussionBoard.errors[1003236].message }}
  • Profile picture of the author iBBnet
    yeah, try changing "260" to "200" and see how that goes
    Signature
    Bryan
    After5PC.net
    Freelance Web Development
    and Graphic Design Services
    {{ DiscussionBoard.errors[1003244].message }}
  • Profile picture of the author iconoclast
    Do I have to insert all that code into my html?
    {{ DiscussionBoard.errors[1004504].message }}
    • Profile picture of the author awoob
      I also have a concern with my created optin form.

      I created a signup form in my Icontact control panel. However, I want both my success url and error url to open in new tab after someone sign up.

      Please, how can I make the following part of my optin form open in new tab?:

      <input type=hidden name=redirect value="http://mydomain.com/success.html" />
      <input type=hidden name=errorredirect value="http://mydomain.com/error.html" />

      I have utilized:
      <a href= "http://mydomain.com/success.html" target="_blank"></a>
      <a href= "http://mydomain.com/error.html" target="_blank"></a>
      but it didn't work still, may be I have input it wrongly.
      {{ DiscussionBoard.errors[4004488].message }}

Trending Topics