02/23/2013 at 10:58 am
#252119
Keymaster
I’m quite certain the wp_footer() template tag is missing from the footer.php file.
Another thing you might want to look at…
This style on line 367 of the theme’s style.css file.
.single p, .static p, .single div, .static div {
display: block;
margin-left: 6em;
}
The div and p tags are already block level elements so you do not need to define them as such. Also that large left margin is what is pushing Form to the right. So you might want to remove that.