thank from your patience and support.
generally when I create a custom page template in other themes I copy page.php in a new file, I rename it as a template page and declaring <?php /* Template Name: Example Template */ ?> and make all my modification inside: calling custom header, giving divs different classes etc.
page.php in stargazer doesn’t call header for example but a specific post header, called entry-header and I cant edit the “master” header, for example.
has this structure:
<?php if ( is_page() ) : // If viewing a single page. ?>
<header class="entry-header">
<h1 <?php hybrid_attr( 'entry-title' ); ?>><?php single_post_title(); ?></h1>
</header><!-- .entry-header -->
<div <?php hybrid_attr( 'entry-content' ); ?>>
<?php the_content(); ?>
<?php wp_link_pages(); ?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php edit_post_link(); ?>
</footer><!-- .entry-footer -->
<?php else : // If not viewing a single page. ?>
<?php get_the_image( array( 'size' => 'stargazer-full' ) ); ?>
<header class="entry-header">
<?php the_title( '<h2 ' . hybrid_get_attr( 'entry-title' ) . '><a href="' . get_permalink() . '" rel="bookmark" itemprop="url">', '</a></h2>' ); ?>
</header><!-- .entry-header -->
<div <?php hybrid_attr( 'entry-summary' ); ?>>
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php endif; // End single page check. ?>
</article><!-- .entry -->
So I’m not able to manage it.