Forum Replies Created

Viewing 1 replies (of 1 total)
  • In the Page Template move one of the last 2 </div> tags above <?php include(TEMPLATEPATH.”/sidebar.php”);?> that will get the sidebar out of the maincolumn wrapper. That will fix everything ??

    <div id=”wrap”>
    <div id=”content”>

    <div id=”contentleft”>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <h1>” rel=”bookmark”><?php the_title(); ?></h1>
    <?php the_content(__(‘Read more’));?><div style=”clear:both;”></div>

    <!–
    <?php trackback_rdf(); ?>
    –>

    <?php endwhile; else: ?>

    <p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p><?php endif; ?>

    </div>
    <?php include(TEMPLATEPATH.”/sidebar.php”);?>
    </div>

    <!– The main column ends –>

    <?php get_footer(); ?>

Viewing 1 replies (of 1 total)