in regards to the header spacing, look for #logoWrapper in the stylesheet and change from
#logoWrapper {stylesheet.css (line 166)
margin-left:20px;
margin-top:12px;
width:auto;
}
to
#logoWrapper {stylesheet.css (line 166)
margin:12px 0 12px 20px;
width: auto;
}
as to the narrowness of the links, the header and following dive are tool close.
the links are within a div#navEZPagesTop which is nested inside the logoWrapper. it will simplify things a great deal if you can move navEZPagesTop inside div.contentWrap at the top level. this way you will preserve your design and allow the extra space navEZPagesTop needs for the links.
Before you begin, be sure to backup the two pages referenced below in case the result is not what you want.
In include/template/your-template/common/tpl_header.php, find the beginning of the ezPage block around line 80
and cut everything from
<!--bof-header ezpage links-->
to and including
<!--eof-header ezpage links-->
Now open include/template/your-template/common/tpl_main_page.php and pastd your code inside the contentWrap div, about line 78 before this code
<?php
// Display all header alerts via messageStack:
if ($messageStack->size('header') > 0) {
echo $messageStack->output('header');
}
so your main_page.php should end up looking like this
<div class="contentWrap">
<!--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-->
<?php
// Display all header alerts via messageStack:
if ($messageStack->size('header') > 0) {
echo $messageStack->output('header');
}
I hope that works for you. good luck.