I have a contact form that is fully functional and displays a \"Thank You\" message when submitting. The only problem is that the thank you message displays above the form so it
Why don't you set the ID of your form, and then direct to the anchor in your form action:
This will basically submit your form and reload your URL as:
http://impressify.co/business-writing.php#my-form
And it should bring you right down to where you want to be, it worked in a simple test I set up.
Or I suppose instead of setting the ID of the form to "my-form"
you could could set the ID of your tag that contains your confirmation message to something like
"form-confirmation-message"
and set the action of your form to action="#form-confirmation-message"
This would probably be the best option as it would bring you right to your message instead of the form, which is just close to your message.