• Resolved cazer

    (@cazer)


    I know that there have been a ton of posts on formatting the submit button, but I still can’t get mine to change.

    I’m trying to change the color of the button. My code is: div.ss-form-entry>input[type=”submit”][name=”submit”] { background-color:#f15a24 }

    My page is here.

    How to I fix this?

    https://wordpress.org/plugins/wpgform/

Viewing 1 replies (of 1 total)
  • Plugin Author Mike Walsh

    (@mpwalsh8)

    Your CSS rule is missing the trailing semicolon but the bigger issue is your selector doesn’t select the Submit button.

    Try this instead:

    td.ss-form-entry > input[type="submit"][name="submit"] {
        background-color: #F15A24;
    }
Viewing 1 replies (of 1 total)

The topic ‘Submit Button Format’ is closed to new replies.