Hi bdbrown,
This is how my page.php looks now:
<?php get_header(); ?>
<section class="content">
<div class="pad group">
<?php while ( have_posts() ): the_post(); ?>
<article <?php post_class('group'); ?>>
<?php get_template_part('parts/page-image'); ?>
<?php get_template_part('parts/page-title'); ?>
<div class="entry themeform">
<?php the_content(); ?>
<div class="clear"></div>
</div><!--/.entry-->
</article>
<?php if ( hu_is_checked('page-comments') ) { comments_template('/comments.php',true); } ?>
<?php endwhile; ?>
</div><!--/.pad-->
</section><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
I don’t know if that was the proper way to move the title, but it worked.
Also, I tried the code above, but the title on my Page remained dark gray (the default color). I tried changing the “h2” to “h1” and that did the trick! Right now, everything looks the way I want it (including how the stuff on Posts look). Using the information you provided, I entered the following code into style.css:
.page-title h1 {
color: #000;
font-size: 32px;
text-align: center;
}
The h1 was the part I was missing and the key to solving this dilemma. Thanks for your help! So far everything looks great, but if I notice anything else, I’ll be sure to post back here.