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 Color

  1. Hi,

    My button's color is green when I want it to be brown. I tried adding the following code:

    #gform_submit_button_1 {
    	background-color: #8b5d3b!important;
    	color: #fff !important;
    }

    but it's being overwritten by another style. Any ideas?

    http://www.topratedcoffeemakers.com/contact

    Thanks!

    Posted 12 years ago on Wednesday August 15, 2012 | Permalink
  2. Try this CSS instead:

    [css]
    #gform_wrapper_1 input[type="submit"] {
    	background: #8b5d3b!important;
    	color: #fffimportant;
    }

    The style was being overridden by line 354 in layout.css.

    [css]
    .button.green,
    input[type="submit"],
    .menu-green {
    	background: #30a146;
    	background: linear-gradient(top, #30a146 0%, #249334 100%);
    	background: -moz-linear-gradient(top, #30a146 0%, #249334 100%);
    	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #30a146), color-stop(100%, #249334));
    	background: -webkit-linear-gradient(top, #30a146 0%, #249334 100%)
    }
    Posted 12 years ago on Wednesday August 15, 2012 | Permalink
  3. Perfect. Thanks, Chris!

    Posted 12 years ago on Wednesday August 15, 2012 | Permalink

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