How do I change color of background behind Submit button?

  • chris.hyatt
    Asked on October 17, 2016 at 2:06 PM

    I've changed it before by can;t find out where/how for the life of me....

  • Charlie
    Replied on October 17, 2016 at 2:42 PM

    You can change the background color of the element that holds the submit button by finding this CSS code line in your Form Designer Tool:

    li[data-type=control_button] {

        background : rgb(250, 10, 0);

        overflow : hidden;

        padding-top : 10px;

        padding-bottom : 10px;

    }

    How do I change color of background behind Submit button? Image 1 Screenshot 30

     

    You can change the value in the "background" attribute. Here's a demo on how I changed the color:

    How do I change color of background behind Submit button? Image 2 Screenshot 41

     

    You can use this tool to get the RGB color values: http://www.w3schools.com/colors/colors_rgb.asp 

    I hope that helps.