justderek
Member
Posted 5 years ago #
I'm down to my last 2 errors on XHTML validation for my main page, and I'm drawing a complete blank on how to fix them. I understand exactly what they are - the <div> tags for #wrapper and #content aren't closed at the very end of the page's source code. So here's my noob question... what file(s) do I edit to close them?
manstraw
Member
Posted 5 years ago #
I guess that would typically be footer.php in your theme's directory.
I'm guessing your footer.php. Something like the footer from tarskicanvas?:
</div>
<div id="footer">
<div id="miscellany">
<?php canvas_zone(TARSKIPAGE.'_misc'); ?>
</div>
<div id="about">
<?php canvas_zone(TARSKIPAGE.'_about'); ?>
</div>
<?php canvas_zone(TARSKIPAGE.'_footer'); ?>
</div>
</div><?php wp_footer(); ?></body></html>