Top
Home

<?php
wp_reset_query();
query_posts('page_id=');
if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php edit_post_link('<font color="red">+</font>','',''); ?>
<?php endwhile; else: ?>
<?php endif; wp_reset_query();
?>

In Div

<?php
wp_reset_query();
query_posts('page_id=');
if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="PageTitle" class="PageTitle"><a><?php the_title(); ?></a></div>
<div id="PageBody" class="PageBody"><p><?php the_content(); ?></p></div>
<?php edit_post_link('<font color="red">+</font>','',''); ?>
<?php endwhile; else: ?>
<?php endif; wp_reset_query();
?>

In Each Media Screen

.PageTitle {font-size:12pt;padding:1px;}
#PageBody p{font-size:10pt;padding-left:8px;padding-right:8px;margin-top:-5px}

In CSS

.PageTitle
{
font-family:sans-serif;
color: #fff;
background-color: #369;
width:100%;
}

#PageBody{
width:100%;
margin-top:10px;
}

#PageBody p{
font-family:sans-serif;
font-weight: normal;
color: #000;
}