Hi again,
I went back through the template parts that I’ve changed and the only one was the site-branding.php
This was my code to show the custom-header
and the call-to-action button that I created next to the logo.
<?php
/**
* Displays header site branding
*
* @package WordPress
* @subpackage Twenty_Seventeen
* @since 1.0
* @version 1.0
*/
?>
<?php if ( is_front_page() ) : ?>
<div class="site-branding">
<div class="wrap">
<div class="site-branding-text">
<?php if ( is_front_page() ) : ?>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<?php else : ?>
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
<?php endif; ?>
<?php $description = get_bloginfo( 'description', 'display' );
if ( $description || is_customize_preview() ) : ?>
<p class="site-description"><?php echo $description; ?></p>
<?php endif; ?>
</div><!-- .site-branding-text -->
<?php if (is_front_page() ) : //This displays Book Now Button only on the front page?>
<div id="call-book-now"> <!-- this is a separate div created for a BOOK NOW button-->
<?php the_custom_logo(); ?>
<a href="#form">
<button type="button" id="submit" class="special-button">RESERVE YOUR TABLE</button>
</a>
</div>
<?php else : ?>
<!--continue the wrap div-->
<?php endif; ?>
<?php if ( ( twentyseventeen_is_frontpage() || ( is_home() && is_front_page() ) ) && ! has_nav_menu( 'top' ) ) : ?>
<a href="#content" class="menu-scroll-down"><?php echo twentyseventeen_get_svg( array( 'icon' => 'arrow-right' ) ); ?><span class="screen-reader-text"><?php _e( 'Scroll down to content', 'twentyseventeen' ); ?></span></a>
<?php endif; ?>
</div><?php endif; ?><!-- .wrap -->
</div><!-- .site-branding -->
Now the menu works on every page, but I also have custom-header
appearing on every page, any ideas how to get rid of the custom-header
on other pages.
I tried through CSS class
body:not(.home-page).custom-header{
visibility: hidden !important;
}
but that didn’t work out!
Please help!