3 replies
  • WEB DESIGN
  • |
Hello I just started my blog and got an opt-in form code from my response magic Auto responder. I want to have a background on my opt-in but cant figure out how can anyone help me.
#form #optin
  • Profile picture of the author JR9982
    You can do this with CSS. it's hard to tell if you don't show us the code that you got from your autoresponder...

    but assuming that your code was contained in a <div> tag you can apply a class (if it doesnt have one already)

    something like <div class="formcontainer">

    then apply some CSS to that like: (this will go on your CSS file, or where the rest of your CSS is)

    .formcontainer {
    background: url("YOUR IMAGE URL HERE") no-repeat scroll 0 0 transparent;
    }


    this should get you going.

    hope it helps

    -JR
    {{ DiscussionBoard.errors[4633548].message }}
    • Profile picture of the author MJJohnson
      I tried something like this before can't seem to get it to work.
      Originally Posted by JR9982 View Post

      You can do this with CSS. it's hard to tell if you don't show us the code that you got from your autoresponder...

      but assuming that your code was contained in a <div> tag you can apply a class (if it doesnt have one already)

      something like <div class="formcontainer">

      then apply some CSS to that like: (this will go on your CSS file, or where the rest of your CSS is)

      .formcontainer {
      background: url("YOUR IMAGE URL HERE") no-repeat scroll 0 0 transparent;
      }


      this should get you going.

      hope it helps

      -JR
      {{ DiscussionBoard.errors[4637210].message }}
  • Profile picture of the author MJJohnson
    here is the code i have


    <form action="responsemagic.com/signup.php" method="post">
    <input type="hidden" name="frmOrigin" value="The 7 Success Factors Video Series is Yours Free...">
    <input type="hidden" name="frmNotify" value="1">
    <input type="hidden" name="frmUserId" value="59057">
    <input type="hidden" name="frmUser" value="ropermary576">
    <input type="hidden" name="frmMUser" value="">
    <input type="hidden" name="slaveForm" value="">
    <input type="hidden" name="frmList" value="20">
    <input type="hidden" name="frmFromEmail" value="roper_mary@live.com">
    <input type="hidden" name="hideSError" value="0">

    <table width="65%" border="0" align="center" cellpadding="4" cellspacing="2" style="none": 1px solid #164886">
    <tr>
    <td colspan="2" bgcolor="#164886" align="center">
    <span style="font-family:amienne; font-weight:bold; font-size:30pt; color: #000000; text-align: center; background:none">
    The 7 Success Factors Video Series is Yours Free...
    </span>
    </td>
    </tr>
    <tr bgColor="#FF00FF">
    <td width="50%" align="left">
    <strong><span style="font-family:Verdana, Arial, Helvetica; font-size: 8pt; color: #164886;">Email Address:</span></strong>
    </td>
    <td width="50%"><input type="text" size="25" name="frmEmail" style="font-family: Verdana, Arial, Helvetica; font-size: 7pt; font-weight: bold; color: #164886; background: #FFFFFF; border: 1px solid #164886; "></td>
    </tr>
    <tr bgColor="#EDEEEF">
    <td align="left">
    <strong><span style="font-family:Verdana, Arial, Helvetica;font-size: 8pt; color: #164886;">Name:</span></strong>
    </td>
    <td>
    <input type="text" size="25" name="frmFirst" style="font-family: Verdana, Arial, Helvetica; font-size: 7pt; font-weight: bold; color: #164886; background:#FFFFFF;border: 1px solid #164886; ">
    </td>
    </tr>





    <input type="hidden" name="frmURL" value="workathomeceos.com/ropermary?">


    <tr bgColor="#EDEEEF">
    <td align="center" valign="top" colspan="2">
    <input type="submit" name="Submit" value="Instant Access " style="font-family: Verdana, Arial, Helvetica; font-size: 8pt; font-weight: bold; color: #164886; background: #FFFFFF; border: 1px solid #164886; cursor: hand; cursor: pointer;">
    </td>
    </tr>
    </table>
    </form>
    {{ DiscussionBoard.errors[4637275].message }}

Trending Topics