php - Move Wordpress sidebar from top to left -


i have blog section on website , while sidebar displayed on left side in blog category list or latest posts page, on single post sidebar on top.

i've had problems single.php page i've started again scratch. latest posts page http://www.crossfitawac.com/blog/ , when click on post title sidebar calendar widget display single post same in latest posts page. i've tried copy lines "latest posts" page template didn't work out.

here single.php http://pastebin.com/wm08wjri

there errors code added. changed below in way should work , not divs tangled up:

<?php get_header(); ?>  <div id="page-content" class="page-content">      <section class="page-header" id="page-header">          <div class="row">              <!-- begin sidebar -->              <div class="three columns">                  <div class="sidebar">                      <?php dynamic_sidebar('primary sidebar'); ?>                  </div>              </div>               <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>               <article id="post-<?php the_id(); ?>" <?php post_class('nine columns'); ?>>                   <div class="post">                      <h1 class="entry-title"><?php the_title(); ?></h1>                      <?php the_content(); ?>                  </div>              </article>               <?php endwhile; ?>           </div><!-- #main-content -->       </section>  </div>   <?php get_footer(); ?> 

Comments

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -

ubuntu - Selenium Node Not Connecting to Hub, Not Opening Port -