• Resolved koentin

    (@koentin)


    Hi,
    I would like to change the color of the send button, at the end of the form.

    Today the color is #DD427B and I would like to put an other color.

    Can you explain me how to modify the color ?
    I’ve tried to search on the editor of the plugin but very difficult.

    I hope you’ll be able to get me an answer.
    Kind regards,

    https://wordpress.org/plugins/ninja-forms/

Viewing 3 replies - 1 through 3 (of 3 total)
  • joyloan

    (@joyloan)

    1. I too want to change color of send button

    2. Want to set maximum width of form 250 px.

    Can somebody tell me where is editing section of pluggin?

    The color of the submit button is going to be whatever your current theme sets it to, since your theme will most likely control the background color of inputs with a type of button.

    To change the background color you can use basic CSS like the following, which would change all submit buttons on your site:

    input[type="submit"] { background: green; }

    Or you can change only submit buttons for Ninja Forms:

    input.nf-element { background: green; }

    To change the width of a form, use the max-width CSS property:

    .ninja-forms-form-wrap { max-width: 250px; }

    Place these CSS rules at the very bottom of your theme’s style.css file, or use a plugin to add them, eg: https://wordpress.org/plugins/simple-custom-css/

    For the ninja form, where should I put the code ? Container or element ?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Color of the SEND button – #DD427B to new color’ is closed to new replies.