Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter tvanacke

    (@tvanacke)

    Ok so I was able to find the menu div’s and I copied it under the header, and deleted the original location but now I have one on top and one on the bottom. Any ideas how to get rid of the top (the duplicate) ONLY on the home page? Here is what my header hardcode looks like.

    <?php
    /**
    * The Header for our theme.
    *
    * Displays all of the <head> section and everything up till <main>
    * and the left sidebar conditional
    *
    * @since 1.0.0
    */
    ?><!DOCTYPE html>
    <!–[if lt IE 7]><html class=”no-js lt-ie9 lt-ie8 lt-ie7″ <?php language_attributes(); ?>><![endif]–>
    <!–[if IE 7]><html class=”no-js lt-ie9 lt-ie8″ <?php language_attributes(); ?>><![endif]–>
    <!–[if IE 8]><html class=”no-js lt-ie9″ <?php language_attributes(); ?>><![endif]–>
    <!–[if gt IE 8]><!–><html class=”no-js” <?php language_attributes(); ?>><!–<![endif]–>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
    <meta http-equiv=”X-UA-Compatible” content=”IE=edge,chrome=1″>
    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
    <title><?php wp_title( ‘|’, true, ‘right’ ); ?></title>
    <link rel=”profile” href=”http://gmpg.org/xfn/11&#8243; />
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
    <!–[if IE]><script src=”<?php echo BAVOTASAN_THEME_URL; ?>/library/js/html5.js”></script><![endif]–>
    <?php wp_head(); ?>
    </head>
    <body <?php body_class(); ?>>

    <div id=”page”>

    <header id=”header”>
    <div class=”container header-meta”>
    <div id=”site-meta”>
    <h1 class=”site-title” >
    ” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?>
    </h1>

    <h2 class=”site-description”>
    <?php bloginfo( ‘description’ ); ?>
    </h2>
    </div>

    <button type=”button” class=”navbar-toggle” data-toggle=”collapse” data-target=”.navbar-collapse”>
    <i class=”fa fa-bars”></i>
    </button>

    <nav id=”site-navigation” class=”navbar” role=”navigation”>
    <h3 class=”sr-only”><?php _e( ‘Main menu’, ‘matheson’ ); ?></h3>
    “><?php _e( ‘Skip to content’, ‘matheson’ ); ?>

    <?php wp_nav_menu( array( ‘theme_location’ => ‘primary’, ‘container_class’ => ‘collapse navbar-collapse’, ‘menu_class’ => ‘nav nav-justified’, ‘fallback_cb’ => ‘bavotasan_default_menu’, ‘depth’ => 2 ) ); ?>
    </nav><!– #site-navigation –>
    </div>
    </header>

    <?php
    // Header image section
    header_images();
    ?>
    <main>

    Thread Starter tvanacke

    (@tvanacke)

    thanks for helping me out. by chance would you be able to walk me through doing something like that?

    [please start only one topic per problem; continue at https://wordpress.org/support/topic/default-widget-text-removal?replies=1 ]

    Thread Starter tvanacke

    (@tvanacke)

    Matheson, any ideas?

Viewing 3 replies - 1 through 3 (of 3 total)