I don’t really understand what do you mean by “centering the first one”… but you have about 75 validation errors:
http://validator.w3.org/check?verbose=1&uri=http%3A//www.every-word.net/
So, I’d start cleaning up the code and see from there.
After I posted the second entry the first one got centered.
Please, do not double post. It will be deleted!
Second warning: do not double post the same question, please.
Every new double post will be instantly deleted.
this is the code for my index.php in word press themes:
<?php include(‘/home/everyw00/public_html/header.php’); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<font size=3 font face=”comic sans ms” color=#800080>” rel=”bookmark”><?php the_title(); ?></font>
<br>
<small><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –></small>
<div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
Posted in <?php the_category(‘, ‘); ?> |
<?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
</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 : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.
<?php include (TEMPLATEPATH . “/searchform.php”); ?>
<?php endif; ?>
</div>
<?php include(‘/home/everyw00/public_html/footer.php’); ?>