Ok so I’ve done some playing around, ditched the standard loop and started scratch, basically copying how it would have been done prior to the 3.0 version. The main content, header, and footer are set-up exactly how they should be and the content is leaving enough room for a sidebar. The sidebar however still wants to display underneath it. If I use the HTML/CSS alone, outside of wordpress is works perfectly but not here. I’ll post the code below.
Loop
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="wrapper">
<div class="content">
<div class="main_content">
<div class="post">
<span class="post_title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></span>
<div class="post_info">
<p>Posted <?php echo get_the_date(); ?> by <?php the_author(); ?> </p>
<p>File Under: <?php the_category(', '); ?></p>
</div>
<div class="post_content">
<div class="post_img"><?php the_post_thumbnail(); ?></div>
<div class="post_txt">
<?php the_content() ?>
</div>
</div> <!--end of post_content-->
<div class="post_bar"><a href="<?php the_permalink(); ?>"><?php comments_number('No Comments','One Comment','% Comments'); ?>, Read More</a></div>
</div> <!--end of post-->
</div>
</div>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
Sidebar.php
<div class="wrapper">
<div class="content">
<div class="main_content">
<div class="sidebar">
<form action="#" class="subscribe_form">
<fieldset>
<div class="subscribe_title"><a href="#">Subscribe now</a></div>
<div class="subscribe_box">
<input type="text" class="input_email" />
<input type="submit" value=" " class="input_submit" />
</div>
</fieldset>
</form> <!--end of subscribe_form-->
<div class="sidenav">
<div class="sidenav_title">Archives</div>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<div class="sidenav">
<div class="sidenav_title">Categories</div>
<ul>
<?php wp_list_categories('show_count=1&title_li='); ?>
</ul>
</div>
</div> <!--end of sidebar-->
</div>
</div>
</div>
CSS
[CSS moderated as per the Forum Rules. ]