Moved the navigation items to an ordered list

This commit is contained in:
Kyle Johnson 2013-06-25 12:21:21 -04:00
parent cdbb3d126e
commit 64fba81f6a
2 changed files with 18 additions and 4 deletions

View File

@ -48,13 +48,14 @@ $cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework
<div id="container">
<div id="header">
<div class="menu">
<?php echo $this->Html->link('Monitors', array('controller' => 'Monitors', 'action' => 'index')); ?>
<?php echo $this->Html->link('Events', array('controller' => 'Events', 'action' => 'index')); ?>
<?php echo $this->Html->link('Options', array('controller' => 'Config', 'action' => 'index')); ?>
<ol>
<li><?php echo $this->Html->link('Dashboard', array('controller' => 'Monitors', 'action' => 'index')); ?></li>
<li><?php echo $this->Html->link('Events', '/Events/'); ?></li>
<li><?php echo $this->Html->link('Options', array('controller' => 'Config', 'action' => 'index')); ?></li>
</ol>
</div>
</div>
<div id="content">
<?php echo $this->Session->flash(); ?>
<?php echo $this->fetch('content'); ?>

View File

@ -731,6 +731,19 @@ div.menu a{
color: #ffffff;
font-size: 100%;
margin-right:10px;
text-decoration:none;
}
div.menu ol {
list-style-type:none;
}
div.menu li{
display:inline;
}
div.menu li.selected {
background-color:pink;
}
div#footer a{