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.

Changing submit button styling

  1. My theme comes with several choices for button styles. Currently it looks like gravity forms is using my theme's default button style. I would simply like to change this to use a different style. What is the css I will need to change here?

    Posted 11 years ago on Saturday November 3, 2012 | Permalink
  2. Well, you didn't share a URL to your form so we can't see what theme you're using, can't see what style is currently being applied and can't tell you what you need to know.

    If you can share a URL to your form then that would be a start. Most likely, you're going to need to copy an existing button style from your theme stylesheet, then create a new CSS rule to apply it to your Gravity Form button. Once we can see the form we can tell you something more definitive.

    Posted 11 years ago on Saturday November 3, 2012 | Permalink
  3. http://financedhomes.ca/rent-to-own-application/

    Posted 11 years ago on Saturday November 3, 2012 | Permalink
  4. Yeah, not sure about which classes you have available for different button styles so you may need to contact your theme support guys for that.. I see it's from these folks.

    http://para.llel.us/

    As far as the buttons, you'll need to target the Gravity Forms submit button and next/previous button elements.. here's an example you can start with.

    [css]
    body .gform_wrapper .gform_footer input[type=submit],
    body .gform_wrapper .gform_footer button,
    body .gform_wrapper .gform_page_footer input[type=submit],
    body .gform_wrapper .gform_page_footer button {
    	color: #790000
    }

    If you need more samples of targeting the form elements for CSS manipulation, you can find those here.

    http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples

    Posted 11 years ago on Saturday November 3, 2012 | Permalink