Not signed in (Sign In)

Vanilla 1.1.5a is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    I'm using PHP to hook my forms into my pages using the code below.

    <?php
    if(!isset($_GET['tfa_next'])) {
    echo file_get_contents("http://app.formassembly.com/rest/forms/view/XXXXXX");
    } else {
    echo file_get_contents("http://app.formassembly.com/rest".$_GET['tfa_next']);
    }
    ?>

    How do I remove the top padding from the form?

    Thanks
    •  
      CommentAuthorcedsav
    • CommentTimeMay 13th 2010
     
    You can add a piece of CSS to your form's custom code.

    I'd try this:

    <style type="text/css">
    .wForm form { margin-top: 0; }
    </style>

    To find out where this code goes, read:
    http://app.formassembly.com/pages/support/customization

    If you've used the Theme Editor to design your theme, you can also alter the margin and padding in the 'Advanced Settings'. Let me know if you need more info on that.

    If this doesn't help, please post a link to your page so we can see what's going on.

    Thanks.

    Cedric