So where do you want that other color? Below body ?
Do I need to put something in function.php so I can be able to do that?
On single.php I have this:
<?php if ( is_single(‘allposts’) ) {
query_posts(“category_name=singlepost” . “&order=ASC”);
if (have_posts()) : while (have_posts()) : the_post();
the_content(‘<p class=”serif”>Read the rest of this entry »</p>’);
endwhile; endif;
}
?>