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.

CSS Button not changing

  1. Hi Dudes

    Ive tried this several times with no joy here

    I change the hover state of the forms submit button in the CSS, but it wont change colour

    currently garish #BA6BC4

    but i want it to be
    #40196C

    https://www.neuroknowhow.com/send-us-a-message/

    Posted 11 years ago on Tuesday October 23, 2012 | Permalink
  2. The garish styles are coming from https://www.neuroknowhow.com/wp-content/themes/organic_nonprofit/includes/organic_gforms.css

    You can override that in one of your stylesheets by adding this:

    [css]
    body .gform_wrapper form input.button:hover {
    	color:#FFFFFF;
    	background: #40196C;
    	border: 1px solid #40196C;
    }
    Posted 11 years ago on Thursday October 25, 2012 | Permalink