php - Logged out sidebar weirdness -


when i'm logged in site, viewing individual post, right sidebar displays perfectly, when log out on same page (via sidebar widget), right sidebar ends below comments. happens i'm viewing individual posts. ideas causing this?

i've double checked css, , far can tell being logged out doesn't add or change class attributes. - theme i'm working doesn't have posts.php file...

post: http://www.wespeakfashion.com/cool-sunglasses

page.php...

<?php include (templatepath . '/header.php'); ?>  <div id="content">  <?php include(templatepath."/l_sidebar.php");?>  <div id="contentleft">     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>     <?php the_content(__('read more'));?><div style="clear:both;"></div>      <!--     <?php trackback_rdf(); ?>     -->      <?php endwhile; else: ?>      <p><?php _e('sorry, no posts matched criteria.'); ?></p><?php endif; ?>     <?php posts_nav_link(' &#8212; ', __('&laquo; go back'), __('keep looking &raquo;')); ?>      </div>  <?php include(templatepath."/r_sidebar.php");?>  </div>  <!-- main column ends  -->  <?php get_footer(); ?> 

the right sidebar appears in main content div. suspicious because left sidebar sibling of main content div. try taking right sidebar out of there, , putting sibling of left sidebar , main content div.


Comments

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -