Moving a div in Wordpress

http://www.intertradeirelandfusion.com/job-apply/

At the bottom of this page is a submit button. When it is clicked a verification box appears at the top of the page.

How can I move this div so that the verification box appears at the bottom?

The form was built in ‘Contact 7 Form’ Plugin.

Thanks.

Hi there,

That’s not too hard to do.
Go to the menu point “Form” in your WordPress backend. Here you’ll see the layout of the form.
Out of the box it looks like this:

<p>Your Name (required)<br />
    [text* your-name] </p>

<p>Your Email(required)<br />
    [email* your-email] </p>

<p>Subject<br />
    [text your-subject] </p>

<p>Your Message<br />
    [textarea your-message] </p>

<p>[submit "Send"]</p>

To move the message box that pops up when submit is clicked and you haven’t filled out all of the fields properly, just place a [response] tag somewhere in the above code.

E.g. the following would make the box appear between the message field and the submit button:

<p>Your Name (required)<br />
    [text* your-name] </p>

<p>Your Email(required)<br />
    [email* your-email] </p>

<p>Subject<br />
    [text your-subject] </p>

<p>Your Message<br />
    [textarea your-message] </p>

[response]

<p>[submit "Send"]</p>