Quote Originally Posted by FunkyPapa View Post
I'm using the apple zen template (fantastic template :) ) and I need to know how I would move the drop down menu up to the top of the page just below where home/login/search are?

The website is located at www.funkymunkys.ca
You will have to edit 2 files to move the dropdown menu. They are:

/templates/apple_zen/common/tpl_main_page.php and tpl_header.php

In tpl_main_page.php look at or around line 172. You should see this:
Code:
<!--bof-drop down menu display-->
        <?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_drop_menu.php');?>
        <!--eof-drop down menu display-->
Basically, your are going to cut and paste that code from tpl_main_page.php to tpl_header.php

Insert the lines in tpl_header.php between these at or around line 60
Code:
            <div id="navMainSearch">
              <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
            </div>
INSERT THE LINES HERE
          </div>
        </div>
You will have to adjust your .css files to move your Logo down below the dropdown menu.