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.

Why's my 'Go' button outside of the form?

  1. Hey!

    At http://www.rciventures.com/contact/ the Go button sits outside the form.

    Can you offer me a simple way to bring it back inside?

    Thanks much!

    Dave

    Posted 12 years ago on Monday July 11, 2011 | Permalink
  2. It's because you've floated the form footer div and now it's not constrained by the form wrapper. If you disable the float property in the rule on line 605 of your style.css file, you'll see that the button is once again contained in the form wrapper.

    screenshot: http://bit.ly/rpagBS

    If you want to float the button to the right, you can do it like this. You'll need to also add a height to the footer element so the spacing is retained.

    [css]
    body .gform_wrapper .gform_footer input[type="submit"] {
        float: right;
        margin-right: 20px;
    }
    
    body .gform_wrapper .gform_footer {
    	height:30px
    }

    screenshot: http://bit.ly/mR1pcX

    Posted 12 years ago on Monday July 11, 2011 | Permalink
  3. Got it. Thank you, Kevin - as always, the perfect answer and fantastic service.

    Bravo!

    Posted 12 years ago on Monday July 11, 2011 | Permalink
  4. Wonderful. Thanks Dave.

    Posted 12 years ago on Monday July 11, 2011 | Permalink