Title: Header &amp; Menu
Last modified: August 30, 2016

---

# Header & Menu

 *  [ruicapelo](https://wordpress.org/support/users/ruicapelo/)
 * (@ruicapelo)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/header-menu-25/)
 * Hi,
    It is possible to move the image to the TOP of the website and the menur
   under it?
 * this my website: [http://www.garagemcadecasa.com](http://www.garagemcadecasa.com)

Viewing 15 replies - 1 through 15 (of 40 total)

1 [2](https://wordpress.org/support/topic/header-menu-25/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/header-menu-25/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/header-menu-25/page/2/?output_format=md)

 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681662)
 * Hi,
 * please search for the following code in “header.php”:
 *     ```
       <?php if ( !is_page_template('template-landing-page.php') ) { ?>
         <div class="menu-box-container">
           <div class="menu-box-wrapper">
           <div class="menu-box">
             <a class="link-home" href="<?php echo esc_url( home_url( '/' ) ); ?>"><i class="icon_house" aria-hidden="true"></i></a>
       <?php wp_nav_menu( array( 'menu_id'=>'nav', 'theme_location'=>'main-navigation' ) ); ?>
           </div>
           </div>
         </div>
       <?php } ?>
       ```
   
 * and move it just before this element:
 * `</header> <!-- end of header -->`
 * Best regards,
    Tomas Toman
 *  Thread Starter [ruicapelo](https://wordpress.org/support/users/ruicapelo/)
 * (@ruicapelo)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681705)
 * It is posible in free version?
 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681732)
 * Hi,
 * yes, the above described modification is determined for the Free version.
 * Best regards,
    Tomas Toman
 *  Thread Starter [ruicapelo](https://wordpress.org/support/users/ruicapelo/)
 * (@ruicapelo)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681734)
 * Thanks for the quick answer but i can´t find the Header.php in the WP Menu.
 * It this option is suposed to be in the tray under theme options?
    Can I install
   any plugin to change the header.php?
 * Best regards
 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681736)
 * The “header.php” is editable through “Appearance > Editor”. But instead of modifying
   the original theme directly, I recommend you to create a [child theme](https://codex.wordpress.org/Child_Themes).
 * Best regards,
    Tomas Toman
 *  Thread Starter [ruicapelo](https://wordpress.org/support/users/ruicapelo/)
 * (@ruicapelo)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681742)
 * I don’t have the option “editor”. My version from HP is 1.1.5 and WP 4.3.1.
 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681746)
 * The Editor is accessible only for users with administrator permissions. If your
   account has the “Administrator” role, please try to deactivate all your installed
   plugins as there might be a plugin that blocks this functionality. If this does
   not help, please contact your web host provider because it could be a server-
   side issue (insufficient permissions for editing files).
 * Best regards,
    Tomas Toman
 *  Thread Starter [ruicapelo](https://wordpress.org/support/users/ruicapelo/)
 * (@ruicapelo)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681770)
 * Solved with hoster provider! The inicial idea is the header begin with the image
   an the Menu under It. I want to cut the title, sub-title, etc.
 * I already tested the The Menu under image and works just fine! but i don’t now
   what i have to cut in addicion to clean above it!
 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681777)
 * Hi,
 * you can put the following custom CSS into “Theme Options > Other Settings > Custom
   CSS” to hide the site title area:
 * `#wrapper .header-content-wrapper {display: none;}`
 * Best regards,
    Tomas Toman
 *  Thread Starter [ruicapelo](https://wordpress.org/support/users/ruicapelo/)
 * (@ruicapelo)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681788)
 * Thank for the support!
 * Best regards
 *  [Feldstein](https://wordpress.org/support/users/feldstein/)
 * (@feldstein)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681866)
 * Hi,
    i’d like to move the image above the menu on right side, titel and sub-titel
   on left above the menu.
 * This code (custom css) moves it to the header
 * `html #wrapper #header .header-content .header-logo {margin: 0 auto; float: right;
   clear: none; text-align: center; display: block;}`
 * but the titel disappears.
 * Then I remove the code in “header.php” just before this element:
 * `</header> <!-- end of header -->`
 * but the menu disappears.
 * Thanks.
 * Best regards,
    Feldstein
 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681867)
 * Dear Feldstein,
 * if you would like show both a Logo and the Site Title in header, then you will
   need to edit this code in “header.php”:
 *     ```
       <?php if ( get_theme_mod('happenstance_logo_url', $happenstance_defaults['happenstance_logo_url']) == '' ) { ?>
             <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p>
       <?php } else { ?>
             <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img class="header-logo" src="<?php echo esc_url(get_theme_mod('happenstance_logo_url', $happenstance_defaults['happenstance_logo_url'])); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>
       <?php } ?>
       ```
   
 * in this way:
 *     ```
       <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p>
             <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img class="header-logo" src="<?php echo esc_url(get_theme_mod('happenstance_logo_url', $happenstance_defaults['happenstance_logo_url'])); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>
       ```
   
 * Best regards,
    Tomas Toman
 *  [Feldstein](https://wordpress.org/support/users/feldstein/)
 * (@feldstein)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681868)
 * Dear Tomas,
 * thanks a lot. Editing achieved success.
 * On left side the header shows titel, logo and sub-titel.
 * I prefer titel and sub-titel on left side, logo right-aligned. And the upper 
   edge of titel be in line with the upper edge of the logo. I fail to manage it
   in Custom CSS.
 * Many thanks once again.
 * Best regards,
    Feldstein
 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681869)
 * Dear Feldstein,
 * if possible, please post here a link to your website so I could view it to help
   you to manage the header area.
 * Best regards,
    Tomas Toman
 *  [Feldstein](https://wordpress.org/support/users/feldstein/)
 * (@feldstein)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/header-menu-25/#post-6681870)
 * Dear Tomas,
 * my website isn’t published yet. If you like, here’s a [ link to a photo of the header area.](http://we.tl/jj0UVzbsCA)
 * Thank you for your help.
 * Best regards
    Feldstein

Viewing 15 replies - 1 through 15 (of 40 total)

1 [2](https://wordpress.org/support/topic/header-menu-25/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/header-menu-25/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/header-menu-25/page/2/?output_format=md)

The topic ‘Header & Menu’ is closed to new replies.

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

 * 40 replies
 * 4 participants
 * Last reply from: [jmbfishing](https://wordpress.org/support/users/jmbfishing/)
 * Last activity: [9 years, 5 months ago](https://wordpress.org/support/topic/header-menu-25/page/3/#post-8634723)
 * Status: not resolved