You have an HTML error in your header. You tried to comment out a div, but didn't close the comment:
HTML Code:
<!--bof-branding display-->
<div id="logoWrapper">
<!--<div id="logo"><a href="http://lesleyelizabeth.net//"><img src="includes/templates/lesel/images/" alt="" /></a></div>
</div>
Add --> here:
alt="" /></a></div>-->
HTML Code:
<!--bof-branding display-->
<div id="logoWrapper">
<!--<div id="logo"><a href="http://lesleyelizabeth.net//"><img src="includes/templates/lesel/images/" alt="" /></a></div>-->
</div>