• Resolved fionda85

    (@fionda85)


    Hi,
    It’s possible to have the same width of field MESSAGGIO for the field NOME and MAIL?

    Also I would like to know if it is possible to delete the report after sending the message but only the text MESSAGE SENT.

    Thanks

    Regards
    Davide

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author WPKube

    (@wpkube)

    Hi @fionda85

    Put this in WP admin > Appearance > Customize > Additional CSS:

    body #simple-contact-form .scf-row input {
        width: 100%;
    }

    As for the message after the form submission, on the plugin settings page, under “General” options, near the end you’ll see “Success message” with a checkbox that has the label “Display verbose success message”.

    Uncheck that checkbox.

    What that will do is just show the message they entered, without the name, email, subject and date.

    And to hide that as well you can add this CSS:

    #scf_success pre {
        display: none; 
    }

    If you have “carbon copies” enabled and you want to hide the message that says “A copy of this message has been sent to your email address” add this as well.

    .scf_carbon {
       display: none;
    }

    And finally if you want to hide the “Click here to reset the form” add this:

    .scf_reset {
       display: none;
    }
    Thread Starter fionda85

    (@fionda85)

    Perfect thanks.

    I would like one last information, what is the CSS class to modify the submit button of the contact form?

    Thread Starter fionda85

    (@fionda85)

    I,ve done.

    Thanks!

    Regards
    Davide

    Plugin Author WPKube

    (@wpkube)

    You’re welcome @fionda85

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Width field NAME and EMAIL as field MESSAGE’ is closed to new replies.