Hi, in developing another admin lay out I ran into a layout inconcistency between /admin/alt_nav.php and all other /admin/ pages (like index.php).

Even after copying this complete section form index.php:

<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html <?php echo HTML_PARAMS; ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
<title><?php echo TITLE; ?></title>
<meta name="robot" content="noindex, nofollow" />
<script language="JavaScript" src="includes/menu.js" type="text/JavaScript"></script>
<link href="includes/stylesheet.css" rel="stylesheet" type="text/css" />
<link href="includes/cssjsmenuhover.css" rel="stylesheet" type="text/css" media="all" id="hoverJS" />
<script type="text/javascript">
<!--
function init()
{
cssjsmenu('navbar');
if (document.getElementById)
{
var kill = document.getElementById('hoverJS');
kill.disabled = true;
}
}
// -->
</script>
</head>
<body onLoad="init()">
<!-- header //-->
<?php require(DIR_WS_INCLUDES . 'header.php'); ?>
<!-- header_eof //-->
<?php

into alt_nav.php the complete header seems to be 15px lower than in the other admin pages allthough the top of the page including the header is exactly the same and it doesn't link to /admin/includes/nde-basic.css anymore.

Can somebody help me out here?

Luc