Title: Move menu
Last modified: August 30, 2016

---

# Move menu

 *  Resolved [kimakaze](https://wordpress.org/support/users/kimakaze/)
 * (@kimakaze)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/move-menu-6/)
 * I was wondering if there was a custom CSS code I could use to move the menu to
   under the header instead of above it? My website is [http://www.swallowdaleguesthouse.ca](http://www.swallowdaleguesthouse.ca).
   Thank you in advance!
    Kim

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

 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/move-menu-6/#post-6425853)
 * Dear Kim,
 * you will need to edit the “header.php”. Please search there for the following
   code (it is located just at the end of the file):
 *     ```
       <?php if ( is_home() || is_front_page() ) { ?>
       <?php if ( get_header_image() != '' && $naturespace_options_db['naturespace_display_header_image'] != 'Everywhere except Homepage' ) { ?>
         <div class="header-image">
           <img class="header-img" src="<?php header_image(); ?>" alt="<?php bloginfo( 'name' ); ?>" />
           <div class="header-image-container">
           <div class="header-image-text-wrapper">
             <div class="header-image-text">
       <?php if ( $naturespace_options_db['naturespace_header_image_headline'] != '' ) { ?>
               <p class="header-image-headline"><?php echo esc_attr($naturespace_options_db['naturespace_header_image_headline']); ?></p>
       <?php } if ( $naturespace_options_db['naturespace_header_image_link_url'] != '' && $naturespace_options_db['naturespace_header_image_link_text'] != '' ) { ?>
               <p class="header-image-link-wrapper"><a class="header-image-link" href="<?php echo esc_url($naturespace_options_db['naturespace_header_image_link_url']); ?>"><?php echo esc_attr($naturespace_options_db['naturespace_header_image_link_text']); ?></a></p>
       <?php } ?>
             </div>
           </div>
           </div>
         </div>
       <?php } ?>
       <?php } else { ?>
       <?php if ( get_header_image() != '' && $naturespace_options_db['naturespace_display_header_image'] != 'Only on Homepage' ) { ?>
         <div class="header-image">
           <img class="header-img" src="<?php header_image(); ?>" alt="<?php bloginfo( 'name' ); ?>" />
         </div>
       <?php }} ?>
       ```
   
 * and move it just above this element:
 * `<div class="header-content-wrapper">`
 * Best regards,
    Tomas Toman
 *  Thread Starter [kimakaze](https://wordpress.org/support/users/kimakaze/)
 * (@kimakaze)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/move-menu-6/#post-6425859)
 * Thank you Tomas for your speedy reply! Will I need to start over and install 
   a child theme to do this?
 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/move-menu-6/#post-6425876)
 * You are welcome! If you modify a theme directly and it is updated, then your 
   modifications may be lost. To avoid overwriting your customizations once the 
   theme is updated, I recommend you to create a child theme.
 * Best regards,
    Tomas Toman

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

The topic ‘Move menu’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/naturespace/2.0.3/screenshot.png)
 * NatureSpace
 * [Support Threads](https://wordpress.org/support/theme/naturespace/)
 * [Active Topics](https://wordpress.org/support/theme/naturespace/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/naturespace/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/naturespace/reviews/)

## Tags

 * [align](https://wordpress.org/support/topic-tag/align/)
 * [css code](https://wordpress.org/support/topic-tag/css-code/)
 * [header](https://wordpress.org/support/topic-tag/header/)
 * [menu](https://wordpress.org/support/topic-tag/menu/)

 * 3 replies
 * 2 participants
 * Last reply from: [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * Last activity: [10 years, 9 months ago](https://wordpress.org/support/topic/move-menu-6/#post-6425876)
 * Status: resolved