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.

Simple e-mail opt-in form

  1. jones
    Member

    Hi there!

    I'm looking to create a simple opt-in form that just has an "e-mail field" and on the right from that field immediately have the submit button. I can't seem to get the button to move. It is below the input field and there is quite some space in between. I want them to be on the same line. Can you please help?

    Thanks!

    Posted 12 years ago on Thursday February 2, 2012 | Permalink
  2. jones
    Member

    After posting this thread, I noticed the "similar topics" on the right and found the solution. I added this in my forms.css and it worked like a charm:

    body #gform_wrapper_3 {
    position: relative;
    }

    /* resize and position the form footer with the button */

    body #gform_wrapper_3 .gform_footer {
    width: auto;
    position: absolute;
    top: 35px;
    left: 270px;
    padding: 0;
    margin: 0;
    }

    Posted 12 years ago on Thursday February 2, 2012 | Permalink