admin.tpl.php

this is the page template for all Administration pages. Only I can see this style, basically all the fancy Flickr stuff in the header is removed and I get my blocks on the left.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
<head>
  <title><?php print $head_title ?></title>
  <meta http-equiv="Content-Style-Type" content="text/css" />
  <meta name="ICBM" content="51.467046,-2.582910" />
  <meta name="DC.title" content="<?php print($site_name) ?>" />
  <meta name="geo.position" content="51.467046,-2.582910" />
  <meta name="geo.placename" content="Bristol, England" />
  <meta name="geo.region" content="GB-BST" />

<!-- NIFTY CORNERS -->
<link rel="stylesheet" type="text/css" href="/<?php print $directory ?>/niftyCorners.css" />
<link rel="stylesheet" type="text/css" href="/<?php print $directory ?>/niftyPrint.css" media="print" />
<script type="text/javascript" src="/<?php print $directory ?>/nifty.js"></script>
<script type="text/javascript" src="/<?php print $directory ?>/layout.js"></script>
<!-- end nifty -->

  <?php print $head ?>
  <?php $styles .= theme('stylesheet_import', base_path() . path_to_theme() . '/admin.css'); ?>
  <?php print $styles ?>
</head>

<body>
<div id="mainCorners">
<div id="mainContainer">

<div id="header">
<div class="headerBG">
  <?php print $search_box ?>
  <?php if ($site_name) : ?>
<h1 id="site-name"><a href="<?php print url() ?>" title="Index Page"><?php print($site_name) ?></a></h1>
  <?php endif;?>
  <?php print $header ?>
</div>
</div>

<div id="top-nav">
<?php print $breadcrumb ?>
    <ul id="primary">
    <li><?php global $user; if (!$user->uid) {
print
'<a href="/user/login">login</a>';
} elseif (
$user->uid) {
print
'<a href="/logout">logout</a></li><li><a href="/admin">administer</a></li>';
}
?>
</li>
    <?php if (count($primary_links)) : ?>
    <?php foreach ($primary_links as $link): ?>
      <li><?php print $link?></li>
    <?php endforeach; ?>
    </ul>
  <?php endif; ?>
</div>

<table id="content">
  <tr>
    <?php if ($sidebar_left != ""): ?>
      <td class="sidebar" id="sidebar-left">
        <?php print $sidebar_left ?>
      </td>
    <?php endif; ?>   
        <td class="main-content" id="content-<?php print $layout ?>">
        <?php if ($title != ""): ?>
          <h2 class="content-title"><?php print $title ?></h2>
        <?php endif; ?>
        <?php if ($tabs != ""): ?>
          <?php print $tabs ?>
        <?php endif; ?>
       
        <?php if ($help != ""): ?>
          <p id="help"><?php print $help ?></p>
        <?php endif; ?>
       
        <?php if ($messages != ""): ?>
          <div id="message"><?php print $messages ?></div>
        <?php endif; ?>
       
        <!-- start main content -->
        <?php print($content) ?>
        <!-- end main content -->
        </td><!-- mainContent -->
  </tr>
</table>
  <?php if (count($secondary_links)) : ?>
    <ul id="secondary">
    <?php foreach ($secondary_links as $link): ?>
      <li><?php print $link?></li>
    <?php endforeach; ?>
    </ul>
  <?php endif; ?>

<?php print $closure;?>
</div>
</div>
  </body>
</html>