• Resolved hj

    (@hj)


    I’d like to have the consent checkbox and wordage BEFORE the submit button – to my mind hitting the submit button is the last action, so should be the last label/button in the contact form sequence.

    How can I re-order these functions (or for that matter, re-order any of the fields and labels?)

    Thanks

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

    (@wpkube)

    Hi @hj

    Give this CSS a try ( can go in the Custom CSS area in the plugin settings ):

    #simple-contact-form form {
        display: flex;
        flex-direction: column;
    }
    
    #simple-contact-form fieldset {
        order: 0;
    }
    
    .scf-submit {
        order: 2;
    }
    
    .scf-confirm-checkbox {
        order: 1;
    }
    Thread Starter hj

    (@hj)

    Yes, that worked a treat! Thank you.

    Now I’ve just got to find where I can increase the font size in the ‘submit’ button…which looks very weedy! (don’t know whether it’s picking it up from the theme, Tempera)

    regards

    Plugin Author WPKube

    (@wpkube)

    Hi @hj

    You’re welcome.

    Yeah, the form inherits the styling from the theme itself.

    #scf-button {
        font-size: 13px;
    }

    Or send over the URL to the page where the form is located and I’ll check it out and write the code that makes it look nicer.

    Thread Starter hj

    (@hj)

    Pages being made up on a localhost so not online yet.

    But that did the trick nicely, thanks, and I can change other button properties under that selector. All good!

    regards

    Plugin Author WPKube

    (@wpkube)

    Great, happy to hear it’s sorted out.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Consent checkbox before submit’ is closed to new replies.