• Resolved ric65

    (@ric65)


    Please can you tell, what must i do, if i move the menü(navigation) from the top under the logo. In which *php file must change the code?

    Thank you very much.

    Wit kind regards, Ric

Viewing 2 replies - 1 through 2 (of 2 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    First create a child theme: http://codex.wordpress.org/Child_Themes

    Theme Author Tomas Mackevicius

    (@tomasm)

    Hi, ric65, open header.php and move this portion of code:

    <nav id="site-navigation" class="main-navigation" role="navigation" itemscope itemtype="http://schema.org/SiteNavigationElement">
    	<h3 class="menu-toggle"><?php _e( 'Menu', 'tinyforge' ); ?></h3>
    	<a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'tinyforge' ); ?>"><?php _e( 'Skip to content', 'tinyforge' ); ?></a>
    	<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
    </nav><!-- #site-navigation -->

    After:

    <!-- Custom Header - End -->

    Of course it is recommended to do it in a child theme, otherwise every theme update will overwrite your changes.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Menü – Navigation under the logo’ is closed to new replies.