Quote Originally Posted by symmo View Post
Thanks again that worked,

I never thought of the grey bar! it might look better without it, but how would I get rid of it ?
p.s thanks for making me aware of the 1.0 issue im much happier now

Symmo

www.temp-tattoos.co.uk
Well, the code for the ezpages section (which is the source of the grey bar that is showing on your page), should be in your header like this:

Code:
<?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
        <div id="navEZPagesTopWrapper">
	  <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
        </div>
      <?php } ?>
SO, if the ezpages is OFF in your site admin, there should be no

<div id="navEZPagesTopWrapper"></div>

in your page source, yet there is. So either its not turned off correctly in the admin, or there is an issue with the above code.