Sorry for my late reply.
To enable EZ-Pages nav bar in header, you can insert the code below or enable them in /includes/templates/template333/common/tpl_header.php
Find current Dropdown menu codes:
PHP 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-->
INSERT codes below Under or above the dropdown codes (which ever you think is good)
PHP Code:
<!--bof-header ezpage links-->
<?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
<?php } ?>
<!--eof-header ezpage links-->
You might need to redo the stylesheet to make the EZ-Pages navigation bar fit nicely in the template.