Wow, I am feeling really dumb right now because in my coding I don’t see any open divs. I did find out that I needed to make classes and ids and that is fixed but I am still getting 4 errors saying I am closing a div that isn’t open but I am seeing that it is. Here is the coding of my index file…
<?php include(“header.php”); ?>
<?php include(“sidebar.php”); ?>
<div id=”blog”>
<div class=”bloghead”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
[<?php the_date(); ?>] ” rel=”bookmark”><?php the_title(); ?> @ <?php the_time() ?></div>
<div class=”blogmid”>
<?php the_content(__(‘(more…)’)); ?>
Lubbing:
<?php comment_plugger(); ?></div>
<p align=”right”>
<?php wp_link_pages(); ?>
<?php comments_popup_link(__(‘Comments (0)’), __(‘Comments (1)’), __(‘Comments (%)’)); ?>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>
<center>
<?php posts_nav_link(‘ — ‘, __(‘« Previous Page’), __(‘Next Page »’)); ?>
</center>
<?php include(“footer.php”); ?>
I just don’t see it.