Error 1: Tables are not inline elements. So you cannot place one in a paragraph () element, which is what you have with the calendar table.
Error 2,3,4,5: The opening <a> tags on these lines are set up as if they are “empty” tags, like <br />. For example, the first one:
<a href="http://heyheykaylarae.com/blog/?page_id=15" /><b>More?</b></a>
should be:
<a href="http://heyheykaylarae.com/blog/?page_id=15"><b>More?</b></a>
Though not a validness issue, note that <b> and <i> elements are considered “deprecated” tags, and one should instead use <strong> and <em> respectively.
Ok, I think I understand. Thanks!
Wow, that was really simple. But it worked. *feels stupid*