- This topic has 3 replies, 2 voices, and was last updated 9 years, 6 months ago by Sakin.
-
AuthorPosts
-
May 22, 2015 at 12:01 pm #58138mosignMember
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)
May 23, 2015 at 9:45 pm #58195SakinKeymaster@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 );
May 24, 2015 at 6:01 am #58219mosignMemberthanks 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!
May 24, 2015 at 7:46 am #58222SakinKeymaster@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.
-
AuthorPosts
- The topic ‘menu at bottom of slider / featured image’ is closed to new replies.