Tagged: , , ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #58138
    mosign
    Member

    how can i change the order of the header items, i need the menu at the bottom of the slider/featured image, tried to sort in header.php but it did not work, thanks a lot! (my site is not yet online)

    #58195
    Sakin
    Keymaster

    @mosign: It would have been easy for me to explain if you had your site live. So, I could check in your slider and featured image. Also, you shouldn’t edit any core theme files such as header.php, index.php, functions.php, style.css and so on which are inside catch-responsive theme directory. As all these edits will be reverted back to original when you update or upgrade your theme.

    If you want to edit any core theme files then you need to build child theme and edit it. For child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/. You can download sample child theme from there and then add the following code in your child theme functions.php file.

    // Unhook default Catch Responsive functions
    function unhook_catchresponsive_functions() {
        remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 );
    }
    add_action( 'init', 'unhook_catchresponsive_functions' );
    
    //Adding menu after slider
    add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 20 );
    #58219
    mosign
    Member

    thanks a lot @sakin, of course i would use a child theme to edit the php functionality, but i decided to change to catch responsive pro today, so i think i have to write to the other forum!

    #58222
    Sakin
    Keymaster

    @mosign: Yes, for Catch Responsive Pro you can use http://catchthemes.com/support-forum/forum/catch-responsive-pro-premium/. But to change menu position, you can use the same code as below in Catch Responsive Pro child theme.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘menu at bottom of slider / featured image’ is closed to new replies.