PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Left side of form not showing on page

  1. This is what my form looks like when I embed it on a page:
    http://waboom.com/?page_id=43

    What can I do to make the whole form visible?

    /Jens

    Posted 14 years ago on Friday July 22, 2011 | Permalink
  2. That issue is being caused by your theme styles. If you look at the style.css file (line 1173) you'll see that it sets a negative left margin on all list items in the "art-post" div. That's the source of your problem.

    [css]
    .art-post li {
        color: #141414;
        font-size: 13px;
        margin: 12px 0 12px -20px;
        padding: 0 0 0 11px;
    }

    If you disable the margin property, you'll see that the form formatting is corrected.

    screenshot: http://bit.ly/qqEjtT

    You can try adding this to the end of your theme stylesheet to override that rule.

    [css]
    body .art-post .gform_wrapper li.gfield {
        margin:0!important;
        padding:0!important;
    }
    Posted 14 years ago on Friday July 22, 2011 | Permalink