• Hello!

    I found at https://validator.w3.org in the last version of Materialis (1.0.173
    ), an unclosed div element called <div id=”page” class=”site”>.

    At header.php, this div is created (but not closed) and remain as is in the html of the final website.

    Looking at footer.php, I see:

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

    And we can fix changing this file to this:

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

    There’re no errors at https://validator.w3.org/ about unclosed elements anymore.

    Please fix it in the next version.

    Thanks!

    • This topic was modified 4 years, 9 months ago by michelnyx.
    • This topic was modified 4 years, 9 months ago by michelnyx.
    • This topic was modified 4 years, 9 months ago by michelnyx.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Div not closed at latest template version (1.0.173)’ is closed to new replies.