Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author wpdevart

    (@wpdevart)

    Hi dear @greglakes.

    The style options are available in the Premium version.

    Thanks.

    Thread Starter greglakes

    (@greglakes)

    So, the ‘Submit’ button is designed to be black with no text?

    Plugin Author wpdevart

    (@wpdevart)

    Hi dear @greglakes.

    No, by default it is set another color. As we see, there is a style conflict with your theme, so find this file – wp-content/plugins/contact-forms-builder/frontend/css/wpdevart-forms.css, it is our plugin style file and edit it.

    Find this part of the code –

    .wpdevart-forms button, .wpdevart-forms input[type="reset"] {
        font-family: inherit;
        margin: 0px 0px 0px 0px;
        line-height: normal;
        vertical-align: top;
        width: auto;
    }

    and replace it with this code –

    .wpdevart-forms button, .wpdevart-forms input[type="reset"] {
        font-family: inherit;
        margin: 0px 0px 0px 0px;
        line-height: normal;
        vertical-align: top;
        width: auto;
        background-color: #ccc!important;
    }

    After the changes clear your website and browser caches and check it again. This should help.

    Thanks.

    Thread Starter greglakes

    (@greglakes)

    Perfect. I guess there’s a conflict with the Twenty Twenty-one theme. It’s fixed. Thank you! Greg

    Plugin Author wpdevart

    (@wpdevart)

    Dear @greglakes.

    You’re welcome and have a great day.

    Also, we should mention that you can add the same code to your theme custom CSS or in another active CSS file(we will not change the code globally, so you may lose the code in the future).

    We will close this topic, if you have other questions, then let us know.

    Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘background color of submit button’ is closed to new replies.