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 is the submit button still not aligned?

  1. I followed one of the post and copied the same code to the css stylesheet :

    I wonder why the submit button for my gform is not aline? Can someone guide me through how to make the adjustment.

    Thanks

    P.S. link : http://www.vincentyim.com/test-form/2011/10/05/

    Posted 12 years ago on Wednesday October 5, 2011 | Permalink
  2. You probably copied a CSS snippet that was customized for someone else's site. You can use those, but you have to adjust them so they work on your site.. it wasn't intended to be a generic fix.

    Remove the previous CSS snippet and try this. You can adjust it if needed to suit your preference.

    [css]
    /* make the form container relative for positioning */
    
    body #gform_wrapper_8 {
        position: relative;
    }
    
    /* set a width on the form body so the button has room on the right */
    
    body #gform_wrapper_8 .gform_body {
        width: 485px;
    }
    
    /* resize and re-position the form footer with the button */
    
    body #gform_wrapper_8 .gform_footer {
        width: auto;
        position: absolute;
        top: 80px;
        right: 16px;
        padding: 0;
        margin: 0;
    }

    test screenshot: http://bit.ly/p2yx7T

    Posted 12 years ago on Wednesday October 5, 2011 | Permalink
  3. Kevin,

    The submit button gone missing!!!!!!!!!!

    Posted 12 years ago on Wednesday October 5, 2011 | Permalink
  4. You didn't copy the CSS snippet completely.. the first backslash is missing from the first comment and the rule for the form wrapper isn't being applied.

    screenshot: http://bit.ly/opdAan

    Posted 12 years ago on Wednesday October 5, 2011 | Permalink
  5. Kevin

    You are awesome!! Problem fixed and thank you so much.

    Posted 12 years ago on Wednesday October 5, 2011 | Permalink
  6. Wonderful. I'm happy I could help. Thanks for the update.

    Posted 12 years ago on Wednesday October 5, 2011 | Permalink

This topic has been resolved and has been closed to new replies.