Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

Sorry for silly question, I'm pretty new in WordPress and Genesis. I want to move Genesis menu above header. How can I do that?

share|improve this question

1 Answer

up vote 1 down vote accepted

Just add the snippets in Genesis Theme function, in functions.php

remove_action('genesis_after_header','genesis_do_nav');
add_action('genesis_before_header','genesis_do_nav');
share|improve this answer
Worked for me, thanks :) – Todd Lambb May 11 '12 at 12:32
Great :) Don't forget to accept my answer then. – Enthusiast May 11 '12 at 12:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.