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.

Form layout Issue

  1. Hey guys, I'm having an issue again with the layout of a simple contact form.

    http://www.rfahaiti.org/contact/ . The your name and your email should be on the same line but they area bit off. I can't find what the css culprit is.

    thanks.

    Posted 12 years ago on Wednesday July 25, 2012 | Permalink
  2. Your form is inheriting a 20px right margin on each structural list item. This is causing the odd stacking.

    You should be able to add this to the end of your theme CSS file and have it override the inherited margin.

    [css]
    #content .post .gform_wrapper ul li,
    #content .page .gform_wrapper ul li,
    .catalyst-widget-area .gform_wrapper ul li {
        margin: 0 !important
    }

    screenshot: http://bit.ly/O9Z3Ry

    Posted 12 years ago on Wednesday July 25, 2012 | Permalink