TwentySixteen Child Theme – Custom Page
-
I wish to retain the standard static page layout for my front page and use a custom page layout without the sidebar and full width (100%) content for most other pages.
I appreciate that the code in the child style.css file below has a global effect and would be grateful for any advice for modifying just the custom page and not the front page.
So far I have created a custom page template as follows: –
<?php /* Template Name: CustomPageT1 */ ?> <?php get_header(); ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php // Start the loop. while ( have_posts() ) : the_post(); // Include the page content template. get_template_part( 'template-parts/content', 'page' ); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) { comments_template(); } // End of the loop. endwhile; ?> </main><!-- .site-main --> </div><!-- .content-area --> <?php get_footer(); ?>
…. and the style.css contains: –
/* Theme Name: Twenty Sixteen Child Description: Twenty Sixteen Child Theme Author: DJP Version: 1.0 Template: twentysixteen */ @import url('../twentysixteen/style.css'); #secondary { display: none; } @media screen and (min-width: 56.875em) { .content-area { width: 100%; } }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘TwentySixteen Child Theme – Custom Page’ is closed to new replies.