Viewing 3 replies - 1 through 3 (of 3 total)
  • Your Submit button appears to be white on white so it doesn’t show. One thing you can try is to edit the CSS for your Submit button. I use Easy Custom CSS (https://wordpress.org/plugins/easy-custom-css/screenshots/), but you can use any CSS editor. Then you set the id for your Submit button in your form (you will need to recreate your Submit button if your current one does not have an id). I use wc7-submit. Then in your CSS editor enter (you can change any of the info or remove lines you don’t need):

    #wc7-submit
    {
    background-color: #0080FF;
    color: #fff;
    font-size: 20px;
    width: 110px;
    height: 35px
    }

    Thread Starter VadimG

    (@vadimg)

    Oh, it works, THANKS A LOT!

    One more thing: when you point the button it’s become invisible. How to, lets say, make it white with blue letters.

    KnowYourRolePro

    (@knowyourrolepro)

    change the color of the button with background-color and change the color of the letters with color

    #wc7-submit
    {
    background-color: #fff;
    color: #0080FF;
    font-size: 20px;
    width: 110px;
    height: 35px

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Need help with submit button’ is closed to new replies.