Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #42787
    Lina
    Participant

    Hi There,

    The menu ins under the header picture in my theme simple catch but I like to have OVER the header picture.
    The location manager under the button menu does not give me any option to change the position of my menu .

    Can you tell me how I change the menu from under the header picture to over the picture?

    my website : http://www.ilomi.at

    Merci

    #42799
    Sakin
    Keymaster

    @Lina: This one is little difficult as we don’t have option for this.

    So, you need to build child theme first. For child theme, you can download sample Simple Catch Child theme from http://catchthemes.com/blog/create-child-theme-wordpress/. Then copy header.php file from simple-catch theme directory to your child theme directory ‘simple-catch-child’. Then find the following code in your header.php file

    <?php 
    	// simplecatch_headersocialnetworks displays social links given from theme option in header 
    	if ( function_exists( 'simplecatch_custom_header_image' ) ) :
    		simplecatch_custom_header_image(); 
    	endif;
    ?>
    <div id="mainmenu">
    	<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
    </div><!-- #mainmenu-->  
    <div class="row-end"></div>

    Then replace it with the following code:

    <div id="mainmenu">
        <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
    </div><!-- #mainmenu-->  
    <div class="row-end"></div>
    <?php 
        // simplecatch_headersocialnetworks displays social links given from theme option in header 
        if ( function_exists( 'simplecatch_custom_header_image' ) ) :
            simplecatch_custom_header_image(); 
        endif;
    ?>
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘location manager menu’ is closed to new replies.