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

    (@the818studios)

    Here is my header.php

    <?php
    /**
    * The Header for our theme.
    *
    * Displays all of the <head> section and everything up till <div id=”main”>
    *
    * @package vantage
    * @since vantage 1.0
    * @license GPL 2.0
    */
    ?><!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
    <meta http-equiv=”X-UA-Compatible” content=”IE=10″ />
    <title><?php wp_title( ‘|’, true, ‘right’ ); ?></title>
    <link rel=”profile” href=”https://gmpg.org/xfn/11&#8243; />
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
    <?php wp_head(); ?>
    </head>

    <body <?php body_class(); ?>>

    <?php do_action(‘vantage_before_page_wrapper’) ?>

    <div id=”page-wrapper”>

    <?php do_action( ‘vantage_before_masthead’ ); ?>

    <?php get_template_part( ‘parts/masthead’, apply_filters( ‘vantage_masthead_type’, siteorigin_setting( ‘layout_masthead’ ) ) ); ?>

    <?php do_action( ‘vantage_after_masthead’ ); ?>

    <?php vantage_render_slider() ?>

    <?php do_action( ‘vantage_before_main_container’ ); ?>

    <div id=”main” class=”site-main”>
    <div class=”full-container”>
    <?php do_action( ‘vantage_main_top’ ); ?>

    Thread Starter the818studios

    (@the818studios)

    And here’s “Masthead logo in menu

    <?php
    /**
    * Part Name: Logo In Menu
    */
    ?>

    <header id=”masthead” class=”site-header masthead-logo-in-menu” role=”banner”>

    <nav role=”navigation” class=”site-navigation main-navigation primary <?php if( siteorigin_setting(‘navigation_use_sticky_menu’) ) echo ‘use-sticky-menu’ ?>”>
    <div class=”full-container”>

    ” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home” class=”logo”><?php vantage_display_logo(); ?>

    <?php if( siteorigin_setting(‘navigation_menu_search’) ) : ?>
    <div id=”search-icon”>
    <div id=”search-icon-icon”><div class=”icon”></div></div>
    <form method=”get” class=”searchform” action=”<?php echo esc_url( home_url( ‘/’ ) ); ?>” role=”search”>
    <input type=”text” class=”field” name=”s” value=”<?php echo esc_attr( get_search_query() ); ?>” />
    </form>
    </div>
    <?php endif; ?>

    <?php wp_nav_menu( array( ‘theme_location’ => ‘primary’, ‘link_before’ => ‘<span class=”icon”></span>’ ) ); ?>
    </div>
    </nav><!– .site-navigation .main-navigation –>

    </header><!– #masthead .site-header –>

    Thread Starter the818studios

    (@the818studios)

    Never mind. Somehow it just fixed itself. Weird.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Issue with "logo" uploading’ is closed to new replies.