MDL-5400 "Accessibility modifications..." - fixing the 4 themes that don't use <h1>. Merged.

This commit is contained in:
nfreear 2007-08-20 10:57:04 +00:00
parent b05c975e30
commit bc8f835f0d
4 changed files with 11 additions and 9 deletions

View file

@ -20,13 +20,13 @@
<?php if ($home) { // This is what gets printed on the home page only
?>
<div id="header-home">
<div class="headermain"><?php echo $heading ?></div>
<h1 class="headermain"><?php echo $heading ?></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"><?php echo $heading ?></div>
<h1 class="headermain"><?php echo $heading ?></h1>
<div class="headermenu"><?php echo $menu ?></div>
</div>
<?php } ?>