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 - Missing in action

  1. I've seen a few similar entries, but none of them have helped me. Not only are all my forms missing the SUBMIT button, but they also don't show any NEXT or PREVIOUS buttons when using page breaks. I'm guessing its a CSS issue, but I have no idea how to fix it.

    http://anmstudio.com/insurance/auto-insurance-request/

    Thanks so much, in advance. I REALLY dig your Plug-in. Thanks, also, for creating it. This is the first problem Ive ever had with it.

    ::Christopher

    Posted 12 years ago on Tuesday November 6, 2012 | Permalink
  2. Your theme styles are essentially hiding your form buttons.. for example.

    style.css (line 927)

    [css]
    input.button, button.button {
        border: 0 none;
    }

    style.css (line 865)

    [css]
    .button {
        background: url("images/arrowBtn.png") no-repeat scroll 9px 9px transparent;
        color: #F9F9F9;
        display: inline-block;
        font-size: 11px;
        line-height: 12px;
        padding: 5px 10px 6px 24px;
        text-decoration: none;
    }

    If you disable those rules, then you'll see that your buttons appear

    screenshot: http://bit.ly/SqpW1F

    You can either remove those styles from your stylesheet, or create more specific rules for your Gravity Forms buttons. You could re-declare the rules for the submit and button elements like this example.. then style them to your preference.

    [css]
    body .gform_wrapper form .gform_footer input[type=submit].button,
    body .gform_wrapper form .gform_footer button {
    	color: #790000;
    	border: 2px solid #000
    }

    Good luck.

    Posted 12 years ago on Tuesday November 6, 2012 | Permalink
  3. Thank you that fixed my issue with the submit button essential looking weird like a smear. Added those words in case someone searches those like I did. :)

    Posted 11 years ago on Wednesday February 13, 2013 | Permalink

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