Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    Thread Starter heyheykaylarae

    (@heyheykaylarae)

    Ok, I think I understand. Thanks!

    Thread Starter heyheykaylarae

    (@heyheykaylarae)

    Wow, that was really simple. But it worked. *feels stupid*

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help Validating?’ is closed to new replies.