htmlvalidation

HTML5 Validation Error: body start tag seen but an element of the same type was already open


I was hoping that someone may know how to resolve this HTML5 validation error. When I try to validate my page: http://blog.genesispetaluma.com using http://validator.w3.org, it gives me the following error code:

Error Line 90, Column 63: An body start tag seen but an element of the same type was already open.

<body class="home blog single-author two-column right-sidebar">

I interpreted this error to mean that I have two body tags in the code. However, I have searched everywhere and can only find one <body> (the one referenced by the error) and one </body>. Can anyone please tell me how to resolve this error?


Solution

  • Possibly it's because:

    <div id="wrapFix">
    
    <div id="drawLogo1">
        <div id="drawLogo2">
            <img src="http://genesispetaluma.com/img/logoNew.png" alt="Genesis Fitness G stylelogo">
        </div>
    </div> <!-- end of drawLogo1 -->
    

    Is between your closing head tag and opening body tag. I.e. lines 81-87