Hi Cais!
Yes, my theme is a modified version of "Coffee Desk" -- I took the original images into Photoshop and made them "Pink Book" like :) Thank you!
I just looked through the posts and my <?php get_sidebar(); ?> was outside of the <div id="content"> in my index.php file at the very bottom of the code.
In the single.php file, <?php get_sidebar(); ?> was also outside, but at the top.
Does that make a difference? Is there something that looks different or out of sync to you?
I copied and pasted by codes below -- what do you think?
Index.php---->
_______________________________________________________
<?php get_header(); ?>
<div id="content">
<?php
if ( is_home() ) echo '<div class="spacer"> </div>';
if (have_posts()) :
$post = $posts[0]; // Hack. Set $post so that the_date() works.
if(is_category()){
echo '<h1 class="archivetitle">Archive for the Category »'.single_cat_title('',FALSE).' «</h1>';
}elseif(is_day()){
echo '<h1 class="archivetitle">Archive for » '.get_the_time('F jS, Y').'«</h1>';
}elseif(is_month()){
echo '<h1 class="archivetitle">Archive for » '.get_the_time('F, Y').' «</h1>';
}elseif(is_year()){
echo '<h1 class="archivetitle">Archive for » '.get_the_time('Y').' «</h1>';
} elseif(is_search()){
echo '<h1 class="archivetitle">Search Results</h1>';
}elseif(is_author()){
echo '<h1 class="archivetitle">Author Archive</h1>';
}elseif(isset($_GET['paged']) && !empty($_GET['paged'])){ // If this is a paged archive
echo '<h1 class="archivetitle">Blog Archives</h1>';
}elseif(is_tag()){ //
echo '<h1 class="archivetitle">Tag-Archive for » '.single_tag_title('',FALSE).' « </h1>';
}
while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
<div class="date">
<div class="date_d"><?php the_time('d');?></div>
<div class="date_m"><?php the_time('M');?></div>
<div class="title">" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></div>
<div class="author"><?php the_author_posts_link('nickname'); ?> <?php edit_post_link(' » Edit «','|',''); ?></div>
</div>
<div class="entry">
<?php if (is_search()){
the_excerpt();
}else{
the_content('more...');
}
?>
</div>
<div class="clear"></div>
<div class="info">
<span class="category">Category: <?php the_category(', ') ?></span>
<?php the_tags(' <span class="tags">Tags: ', ', ', '</span>'); ?>
<span class="bubble"><?php comments_popup_link('Leave a Comment','One Comment', '% Comments', '','Comments off'); ?></span>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div>
<?php else : ?>
<h1>Not found</h1>
<p class="sorry">"Sorry, but you are looking for something that isn't here. Try something else.</p>
<?php endif; ?>
</div>
<?php get_sidebar();?>
<?php get_footer();?>
Single.php ----->
_______________________________________________________
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="content">
<div class="spacer"></div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
<div class="date">
<div class="date_d"><?php the_time('d');?></div>
<div class="date_m"><?php the_time('M');?></div>
<div class="title">" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></div>
<div class="author"><?php the_author_posts_link('nickname'); ?> <?php edit_post_link(' » Edit «','|',''); ?></div>
</div>
<div class="entry">
<?php
the_content('more...');
wp_link_pages(array('before' => '<div><center>Pages: ', 'after' => '</center></div>', 'next_or_number' => 'number'));
?>
</div>
<div class="clear"></div>
<div class="info">
<span class="category">Category: <?php the_category(', ') ?></span>
<?php the_tags(' <span class="tags">Tags: ', ', ', '</span>'); ?>
</div>
</div>
<div id="postmetadata">
You can follow any responses to this entry through the <?php comments_rss_link('RSS 2.0'); ?> feed.
<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) { // Both Comments and Pings are open ?>
You can leave a response, or " rel="trackback">trackback from your own site.
<?php }elseif(!('open' == $post-> comment_status) && ('open' == $post->ping_status)) { // Only Pings are Open ?>
Responses are currently closed, but you can " rel="trackback">trackback from your own site.
<?php }elseif(('open' == $post-> comment_status) && !('open' == $post->ping_status)){ // Comments are open, Pings are not ?>
You can skip to the end and leave a response. Pinging is currently not allowed.
<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) { // Neither Comments, nor Pings are open ?>
Both comments and pings are currently closed.
<?php }
edit_post_link('Edit this entry.','','');
?>
</div>
<?php
comments_template();
?>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php previous_post_link('« %link') ?></div>
<div class="alignright"><?php next_post_link('%link »') ?></div>
</div>
<?php else : ?>
<h1>Not found</h1>
<p class="sorry">"Sorry, but you are looking for something that isn't here. Try something else.</p>
<?php endif; ?>
</div>
<?php get_footer();?>