How Can I Move the Thesis Navbar Below the Header?

August 29, 2010

in Thesis,Wordpress

This is pretty easy, but it does need some extra lines added to your custom folder.

Perhaps this could be a config option in the future?

Thesis: Move the navbar Below the Title

You need to add the following code to the custom_functions.php file.

Just paste it at the end.

remove_action(’thesis_hook_before_header’, ‘thesis_nav_menu’);
add_action(’thesis_hook_after_header’, ‘thesis_nav_menu’);

What does this do?

This little bit of code removes the standard call to the thesis_nav_menu function that builds your navbar and then adds it back in again – but this time it is built after your blog header is outputted.

Simples!

Related posts:

  1. Multiple header logos and favicons on a shared WordPress Install
  2. Thesis Tutorial – Creating Custom Categories
  3. WordPress Thesis Theme Flickr Images Not Showing Up

Leave a Comment

Previous post:

Next post: