michaelborger
Member
Posted 1 year ago #
Hello. For some reason now, my header and footer on blog post pages only (or so I've found so far) just run the width of the body. Before a couple days ago they ran the width of the entire screen. I'm not sure what changed, but it makes the blog post pages look quite ugly. I had a VA update my sidebar.php to add the Twitter for WordPress plugin, but I can't see how that would have caused it.
site:
BigRockInvestments.com
Any ideas? Thank you in advance.
You should start by sorting out the markup errors. You could have all kinds of missing tags or mis-nested tags in those 61 errors. Then move onto the CSS errors.
http://codex.wordpress.org/Validating_a_Website
Your footer is not spanning the width of the screen because your footercover div is inside the wrapper div.
Make sure it follows this order:
<div id="wraper">
.....
</div>
<div id="footercover">
.....
</div>