<div align="center">
<?php echo $loggedinas ?>
<?php echo $homelink ?>
-<?php echo $performanceinfo ?>
+<?php if (!empty($performanceinfo)) {
+ echo $performanceinfo;
+} ?>
</div>
-
+<?php if ($CFG->debug > 7) {
+?>
+ <br />
+ <hr size="1" noshade="noshade" />
+ <p align="center">
+ <a href="http://validator.w3.org/check?verbose=1&ss=1&uri=<?php echo urlencode(qualified_me()) ?>">Validate HTML</a> |
+ <a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=-1&url1=<?php echo urlencode(qualified_me()) ?>">Section 508 Check</a> |
+ <a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=0&warnp2n3e=1&url1=<?php echo urlencode(qualified_me()) ?>">WCAG 1 (2,3) Check</a>
+ </p>
+<?php } ?>
</div>
</div>
background-color:#FFFFFF;
}
+.generaltable,
+.generaltable td {
+ border-color:#C6BDA8;
+ /* background-color:#FFFFFF; */
+}
+
+.generaltable td.cell.c0 {
+background-color:#C6BDA8;
+}
+
.navbar {
background-color:#C6BDA8;
border-color:#666666;
background-color:#FEF9F6;
}
+.sideblock hr {
+ color:#C6BDA8;
+ /*background-color:#FEF9F6;*/
+}
+
.sideblock .footer {
border-top-color:#C6BDA8;
}
echo " onload=\"setfocus()\"";
}
?>>
-
+
<div id="page">
-<?php if ($home) { // This is what gets printed on the home page only
+<?php //Accessibility: 'headermain' is now H1, see theme/standard/styles_layout.css: .headermain
+ if ($home) { // This is what gets printed on the home page only
?>
- <div id="header-home">
- <div class="headermain"><img src='<?php echo $CFG->wwwroot.'/theme/'.current_theme() ?>/logo.jpg' /></div>
+ <div id="header-home" class="clearfix">
+ <h1 class="headermain"><img src='<?php echo $CFG->wwwroot.'/theme/'.current_theme() ?>/logo.jpg' border='0'/></h1>
<div class="headermenu"><?php echo $menu ?></div>
</div>
<?php } else if ($heading) { // This is what gets printed on any other page with a heading
?>
- <div id="header">
- <div class="headermain"><img src='<?php echo $CFG->wwwroot.'/theme/'.current_theme() ?>/logo_small.jpg' /></div>
+ <div id="header" class="clearfix">
+ <h1 class="headermain"><img src='<?php echo $CFG->wwwroot.'/theme/'.current_theme() ?>/logo_small.jpg' border='0'/></h1>
<div class="headermenu"><?php echo $menu ?></div>
</div>
<?php } ?>
- <div class="clearer"> </div>
-<?php if ($navigation) { // This is the navigation table with breadcrumbs ?>
- <div class="navbar">
+<?php //Accessibility: breadcrumb trail/navbar now a DIV, not a table.
+ if ($navigation) { // This is the navigation bar with breadcrumbs ?>
+ <div class="navbar clearfix">
<div class="breadcrumb"><?php print_navigation("$navigation"); ?></div>
<div class="navbutton"><?php echo $button; ?></div>
</div>
<?php } else if ($heading) { // If no navigation, but a heading, then print a line
?>
- <hr size="1" noshade="noshade" />
+ <hr size="1" noshade="noshade" />
<?php } ?>
- <div class="clearer"> </div>
<!-- END OF HEADER -->
<div id="content">
\ No newline at end of file