Viewing 3 replies - 1 through 3 (of 3 total)
  • Line 22, Column 30: document type does not allow element “div” here; missing one of “object”, “applet”, “map”, “iframe”, “button”, “ins”, “del” start-tag

    You’ve got a <div> inside the <h1>, that’s not allowed. Try the other way around:

    <div id="...">
      <h1>..</h1>
    </div>

    Line 54, Column 13: end tag for “br” omitted, but OMITTAG NO was specified

    the <br /> tag has no closing tag. Replace by <br />

    Line 96, Column 115: required attribute “alt” not specified

    Specify an alt=”…” in your <img> tag

    Line 96, Column 119: end tag for “img” omitted, but OMITTAG NO was specified

    related to the previous error

    You have no closing <body> (</body>) and <html> (</html>) tags, add them to your footer

    Peter

    Try the two most important errors first:

    The missing body and html tags will “whack” your page in some browsers; look in the footer.php; the very bottom of the file should look like this:

    <?php wp_footer(); ?>
    </body>
    </html>

    “You’ve got a <div> inside the <h1>, that’s not allowed. Try the other way around:”

    That error is in header.php

    Thread Starter brittanywigand

    (@brittanywigand)

    The bottom of the footer.php has that in it songdogtech, & I fixed the error in header.php. I don’t know where the other errors are occurring… I wouldn’t of known that error was in header.php if you hadn’t told me. Help?!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘I have 15 errors and no idea how to fix any of them?’ is closed to new replies.