Had the same issue. The plugin causing the issue for me was “WP Facebook Open Graph protocol”. Once disabled, the contact form worked as it should.
There does not appear to be a setting for this. I was wondering the same thing and came up with the following solution which can be viewed at http://mentallyill.info
Open sociable.php and at line 930 change “$content .= sociable_html();” to “$content = sociable_html().$content;”
Then I added the following to my custom CSS so that it appears on the right of the blog/page title:
div.sociable{
float:right;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 10px;
padding-left: 10px;
margin: 0px;
margin-top: -50px;
}
Edit the CSS to the position you like.
Hope this helps.
AlAiN