Title: AlanQ's Replies | WordPress.org

---

# AlanQ

  [  ](https://wordpress.org/support/users/alanq/)

 *   [Profile](https://wordpress.org/support/users/alanq/)
 *   [Topics Started](https://wordpress.org/support/users/alanq/topics/)
 *   [Replies Created](https://wordpress.org/support/users/alanq/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/alanq/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/alanq/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/alanq/engagements/)
 *   [Favorites](https://wordpress.org/support/users/alanq/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[First] Header image not. working](https://wordpress.org/support/topic/header-image-not-working-2/)
 *  [AlanQ](https://wordpress.org/support/users/alanq/)
 * (@alanq)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/header-image-not-working-2/#post-5309641)
 * I’m struggling with this one too.
 * It seems to be that little of the header can be modified without editing header.
   php
 * [@polishbunny](https://wordpress.org/support/users/polishbunny/) and [@corine](https://wordpress.org/support/users/corine/)
   van den Berg —
    Putting the Navigation bar below the header is equally as easy
   as Snader86’s technique for hard coding the header image:
 * Put
 * `<div id="header-image" class="header-image"><img src="..."></div>`
 * _Just above_ the block that begins
 *     ```
       <?php if ( ! get_theme_mod( 'first_hide_navigation' ) ) : ?>
       	<div class="site-bar">
       		<nav id="site-navigation" class="main-navigation" role="navigation">
       ```
   
 * and ends
 *     ```
       </nav><!-- #site-navigation -->
       	</div>
       		<?php endif; ?>
       ```
   
 * It’s best to do these changes on header.php within a child theme:
 * Follow the instructions here [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
 * Then copy header.php from the directory of the ‘first’ theme into the new ‘first-
   child’ directory — this is the one you edit.
 * This way, when First is updated, the update doesn’t destroy all your changes.
 * If/when First is updated, check to see if this bug has been fixed.
 * If not, you will want to take a copy of First’s header.php and re-apply your 
   modifications within your child theme, just in case header.php has changed in
   the new version of First.

Viewing 1 replies (of 1 total)