I am a web marketing guy.
I market PEOPLE, their TALENTS, SERVICES and PRODUCTS.
My customers pop up in my email or on my BlackBerry with a problem for me to solve. If we have a meeting of the minds, their problem becomes MY problem as we tackle their web marketing project. MY challenge is getting them, or… their talent, or… their service or… their product SEEN by as many targeted demographics of the Web as possible.
The process of moving the Thesis Theme Navigation Menu is pretty straight forward. You have to tell the Thesis Theme (via code) to remove the Thesis Navigation Hook from before the header and then using a new instruction, tell the Thesis Theme (via code) to place the Nav Menu immediately after the header.
So you go to your Thesis Menu on the left side of your WordPress Dashboard, select Custom File Editor and then select one of the three files shiped with Thesis: custom_functions.php
You will add two new lines of code the remove and the add
// Delete this line, including the dashes to the left, and add your hooks in its place.
Then delete the above line inside your custom_functions.php and place these codes in the same place of the deleted line:
//Move nav below header
remove_action('thesis_hook_before_header', 'thesis_nav_menu');
add_action('thesis_hook_after_header', 'thesis_nav_menu');
And finish! Now your Main Navigation Menu, such as Home, About, Etc will appear right below the header!