thanks, I got it up and going, problem is the content is nto formatted, paragraphs, sizing…
I seem to be missing the proper style…here is my code, not sure whats wrong….
<div id="content" style="display:block;float:left;padding-left:50px;padding-top:20px;">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>">
<div>
<h2><b>
<?php the_title(); ?>
</b></h2>
</div>
<p><br /><p> <div>
<?php the_content('<p>Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
</div>
<?php endwhile; endif; ?>
<div>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
</div>