JezK
Edit File: header.php
<?php /** * The header for our theme. * * This is the template that displays all of the <head> section and everything up until <div id="content"> * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Glow */ ?><!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="page"> <?php if ( is_active_sidebar('dt-topbar') ) { ?> <div id="header-topbar" class="header-topbar"> <?php dynamic_sidebar('dt-topbar'); ?> </div> <?php } ?> <header class="dt-site-header" role="banner"> <div id="dt-header-nav" class="dt-main-menu-wrap transition-bg <?php if( is_front_page() && get_theme_mod( 'home_featured_posts' ) != '' ) : ?>dt-home-menu dt-main-menu-scroll<?php endif; ?>"> <div class="container"> <div class="container-wrapper"> <div class="row"> <div id="dt-site-logo" class="col-lg-3 col-md-12 col-sm-12"> <div class="dt-logo"> <?php if ( function_exists( 'get_custom_logo' ) && has_custom_logo() ) { the_custom_logo(); } if ( display_header_text() ) { if (is_front_page() && is_home()) { ?> <h1 class="transition35 site-title"> <a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a> <?php $description = get_bloginfo('description', 'display'); if ($description || is_customize_preview()) : ?> <span class="site-description"><?php echo $description; ?></span> <?php endif; ?> </h1> <?php } else { ?> <p class="transition35 site-title"> <a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a> <?php $description = get_bloginfo('description', 'display'); if ($description || is_customize_preview()) : ?> <span class="site-description"><?php echo $description; ?></span> <?php endif; ?> </p> <?php } } ?> <div class="dt-menu-md"> <i class="fa fa-bars"></i> </div> </div><!-- .dt-logo --> </div><!-- .col-lg-3 .col-md-3 --> <?php if ( has_nav_menu( 'primary' ) ) : ?> <div class="dt-main-menu-wrapper col-lg-9 col-md-12 col-sm-12"> <nav class="dt-main-menu"> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu', 'container_id' => 'primary-menu-container', 'container_class' => 'primary-menu-container' ) ); ?> </nav><!-- .dt-main-menu --> </div><!-- .col-lg-9 .col-md-9 --> <?php endif; ?> </div><!-- .row --> </div><!-- .container-wrapper --> </div><!-- .container --> </div><!-- .dt-main-menu-wrap --> <?php if ( get_theme_mod( 'home_featured_posts' ) == '' || ! is_front_page() ) : ?> <div class="dt-header-sep"></div> <?php endif; ?> <?php if( ! is_front_page() && ! is_home() ) : ?> <?php if ( function_exists( 'bcn_display' ) ) { ?> <div class="dt-breadcrumbs"> <div class="container"> <div class="row"> <div class="col-lg-12 col-md-12"> <?php bcn_display(); ?> </div><!-- .col-lg-12 .col-md-12 --> </div><!-- .row--> </div><!-- .container--> </div><!-- .dt-breadcrumbs--> <?php } ?> <?php endif; ?> </header>