@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;
?>