ok, so here’s the body tag in my theme’s index.php
<body>
<div id="wrapper">
<?php include(TEMPLATEPATH . "/menu.php"); ?>
<?php include(TEMPLATEPATH . "/banner.php"); ?>
<?php if($options['sidebarloc'] == 'left') { ?>
<?php get_sidebar(); ?>
<?php } ?>
<div id="container">
<?php include(TEMPLATEPATH . "/postlist.php"); ?>
</div>
<?php if($options['sidebarloc'] == 'right') { ?>
<?php get_sidebar(); ?>
<?php } ?>
<div class="clear"></div>
<?php get_footer(); ?>
</div>
</body>
Would the loop code go right before the “clear” div?