• Resolved spmiyamoto

    (@spmiyamoto)


    I have some full width pages that do not require a featured image. I would like to remove the white space between the navigation and the content. Can you give instructions on how to do this? I have created a child theme and attempted to create a full width page without the hero option but I’m getting the wrong results.

    Here is the full width template that I have tried to modify in the child theme:
    ==========================================================================================
    * Template Name: Full Width Page
    *
    * @package Edin
    */

    get_header(); ?>

    <?php while ( have_posts() ) : the_post(); ?>

    <?php get_template_part( ‘content’, ‘hero’ ); ?>

    <?php endwhile; ?>

    <?php rewind_posts(); ?>

    <div class=”content-wrapper clear”>

    <div id=”primary” class=”content-area”>
    <main id=”main” class=”site-main” role=”main”>

    <?php while ( have_posts() ) : the_post(); ?>

    <?php get_template_part( ‘content’, ‘page’ ); ?>

    <?php
    // If comments are open or we have at least one comment, load up the comment template
    if ( comments_open() || ‘0’ != get_comments_number() ) {
    comments_template();
    }
    ?>

    <?php endwhile; // end of the loop. ?>

    </main><!– #main –>
    </div><!– #primary –>

    </div><!– .content-wrapper –>

    <?php get_footer(); ?>
    ==========================================================================================

    I tried to remove this loop and got some success but I had duplicate content below what was expected:

    <?php while ( have_posts() ) : the_post(); ?>
    <?php get_template_part( ‘content’, ‘hero’ ); ?>
    <?php endwhile; ?>

    Any help you can provide will be appreciated.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove the hero space when the featured image is not used.’ is closed to new replies.