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.

Submit button cut off

  1. I have a form created but the submit button is cut off - only shows the top half of the button image. Below the button is some code: [gravityform id="1" name="How much will your project cost?"]

    How do I fix this? Full button and remove the code?

    Posted 12 years ago on Monday November 7, 2011 | Permalink
  2. Fixed the code issue. Now, if I can get a solution to the submit button.

    Posted 12 years ago on Monday November 7, 2011 | Permalink
  3. Can you post a link to your form so we can take a look.

    Posted 12 years ago on Monday November 7, 2011 | Permalink
  4. http://fusekreative.com/wordpress/estimate/

    Posted 12 years ago on Monday November 7, 2011 | Permalink
  5. In your style.css you have a declaration on line 646 that has a height of 20px for every input. The submit button is an input so it's following that rule. So place this in your style.css file:

    [css]
    input[type="submit"] {
    height: auto;
    }

    This will make all inputs with the type of submit to auto height.

    Posted 12 years ago on Monday November 7, 2011 | Permalink
  6. Great! Thanks, Rob.

    Posted 12 years ago on Monday November 7, 2011 | Permalink
  7. No problem, glad to help!

    Posted 12 years ago on Monday November 7, 2011 | Permalink

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