
Originally Posted by
Sherenanz
How can you see all those mistakes? It looks all greek to me!
By using the WebDeveloper Addon for FireFox. Look at the button (if you use the toolbar vs. the "view" dropdown) Tools>Validate CSS (WHILE VIEWING YOUR SITE). That will take you to the W3C Schools' css validator, showing you all errors.

Originally Posted by
Sherenanz
Do you know how I could get that header to sit at the bottom of the green bit in the logo area?
Try looking in includes/templates/turina/common/tpl_header.php and moving the section of code containing the EZ-Pages;
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-->
up the page until you get it where you want it. You should be able to place it right under <!--eof-header logo and navigation display--> and get it pretty close to the top............if not, just keep moving that whole block of code up the page until it looks right.
Hope this helps.