Viewing 8 replies - 1 through 8 (of 8 total)
  • You have a missing closing </div> in your single.php template.

    Thread Starter john2801

    (@john2801)

    Nope..
    never went in there..

    <?php get_header(); ?>

    <div id=”content_single” class=”narrowcolumn”>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <div class=”post-top”>
    <div class=”post-title”>
    <h2>” rel=”bookmark” title=”Permanent Link to <?php if ( function_exists(‘the_title_attribute’)) the_title_attribute(); else the_title(); ?>”><?php the_title(); ?></h2>
    <h3>
    Posted by <span><?php the_author() ?></span> | Posted in <span><?php the_category(‘, ‘) ?></span> | Posted on <?php the_time(‘d-m-Y’) ?>
    </h3>
    <h3>
    <span class=”post_cats”><?php the_tags(); ?></span>
    </h3>
    </div>
    <h4><?php comments_number(‘0’, ‘1’, ‘%’); ?></h4>
    </div>

    <div class=”entry”>
    <?php the_content(‘Read the rest of this entry »’); ?>
    </div>
    </div>

    <?php comments_template(); ?>

    <?php endwhile; else: ?>

    <p>Sorry, no posts matched your criteria.</p>

    <?php endif; ?>

    </div>

    <?php get_footer(); ?>

    Anyone Else?

    Thread Starter john2801

    (@john2801)

    Esmi..
    can you tell me where?

    <?php get_header(); ?>

    <div id=”content_single” class=”narrowcolumn”>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <div class=”post-top”>
    <div class=”post-title”>
    <h2>” rel=”bookmark” title=”Permanent Link to <?php if ( function_exists(‘the_title_attribute’)) the_title_attribute(); else the_title(); ?>”><?php the_title(); ?></h2>
    <h3>
    Posted by <span><?php the_author() ?></span> | Posted in <span><?php the_category(‘, ‘) ?></span> | Posted on <?php the_time(‘d-m-Y’) ?>
    </h3>
    <h3>
    <span class=”post_cats”><?php the_tags(); ?></span>
    </h3>
    </div>
    <h4><?php comments_number(‘0’, ‘1’, ‘%’); ?></h4>
    </div>

    <div class=”entry”>
    <?php the_content(‘Read the rest of this entry »’); ?>
    </div>
    </div>

    <?php comments_template(); ?>

    <?php endwhile; else: ?>

    <p>Sorry, no posts matched your criteria.</p>

    <?php endif; ?>

    </div>

    <?php get_footer(); ?>

    Try looking in one of your other template files – sidebar.php or footer.php

    Thread Starter john2801

    (@john2801)

    <div id=”sidebar” class=”sidebars”>

      <?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(1) ){
      ?>
      <?
      } else { ?>

      <li class=”widget_categories”>
      <h2>Category</h2>

      <?php wp_list_cats(‘sort_column=name&optioncount=1’); ?>

    <li class=”widget_archives”><h2>Archives</h2>

      <?php wp_get_archives(‘type=monthly’); ?>

    <?php wp_list_bookmarks(‘title_li=Partner Links&categorize=0’); ?>

    <?php } ?>

    </div>

    Thread Starter john2801

    (@john2801)

    Went through all the above locations.. It is still happening.. thinking it might be one of the 5 Plugins.

    Question: With the WP 2.9 Update would that effect plugins? and if so.. would it make the far right column jump to the left inside the middle after “Read The Full Post” is clicked?

    Thread Starter john2801

    (@john2801)

    went through all plugins.. and code.. remedy: tear down and build again.
    Has something to do with update 2.9

    Case Closed!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Updated 2.9.. Side Bar to The Right Jumps to The Middle Left’ is closed to new replies.