Need help with opt in forms in WordPress

2 replies
  • WEB DESIGN
  • |
I am trying to promote a company that provides me with an autoresponder. When I paste the code in to my text area it comes out looking terrible. You can see all the table cells and rows individually. You can see the form here Test | Out Of The Poor House

I am not very experienced with PHP or CSS. I have tried to code a little CSS but I don't know if and where I need to put div tags in to the html. I am using the weaver ii theme with a child theme set up.

Any help would be much appreciated.
#forms #opt #wordpress
  • Profile picture of the author gerardojv
    Is this a snippet they provide? Does the code look like:

    HTML Code:
    <form action="http://www.aiop-response.com/subscribe.php" method="post">
    <table style="font-size: 12px; width: 250px;" border="0" cellspacing="20" bgcolor="#EEEEEE">
    <tbody>
    <tr>
    <td><span style="color: #000000;">Your Name:</span></td>
    <td><input type="text" name="name" size="14"></td>
    </tr>
    <tr>
    <td><span style="color: #000000;">Your E-Mail:</span></td>
    <td><input type="text" name="email" size="14"></td>
    </tr>
    <tr>
    <td></td>
    <td align="center"><input style="background-color: cccccc; ; color: 000000;" type="submit" value="Sign Up!"></td>
    </tr>
    <tr>
    <td colspan="2" align="center"><a style="text-decoration: none;" href="http://allinoneprofits.com/"><span style="color: #000000;">powered by AIOP</span></a><span style="color: #000000;">We respect your privacy</span></td>
    </tr>
    </tbody>
    </table>
    <p><input type="hidden" name="user_id" value="12489"></p>
    </form>
    or Does it looks like:

    HTML Code:
    <script src="http://somewebsite.com/somescript.php"></script>
    If its just pure html as a form, you can add css styling into it, if its more of a embed snippet, I don't think you'll be able to directly edit the styling.

    If you need help just PM me, I can give you a few pointers.

    Gerardo
    {{ DiscussionBoard.errors[8950853].message }}
  • Profile picture of the author muzzo
    [DELETED]
    {{ DiscussionBoard.errors[8951089].message }}
    • Profile picture of the author Marketer Matt
      Your theme probably has table styles built into it. You'd have to overwrite them with custom CSS of your own. Some themes have an option where you can put this. If not, you can just put it in the bottom of your style.css sheet (usually), and it should work.

      Something like this:

      Code:
      #wrapper #content tr td {
          border: none;
      }
      {{ DiscussionBoard.errors[8952059].message }}

Trending Topics