Hej,
ich bastele mir gerade ein Menü in der Sidebar und hätte es auch gern dynamisch gehighlighted.
Das mache ich so:
<?php ?>
<div id="sidebar" role="navigation">
<ul>
<li<?php if (is_page('Aktuelles')) { echo " id=\"current\"";}?>><a href="index.php/?page_id=37" title="Aktuelles">Aktuelles</a></li>
</ul>
</div>
und im css:
#sidebar a:link {
font-family: Myriad, Helvetica, sans-serif;
vertical-align: super;
color: #333333;
text-decoration: none;}
#sidebar a:visited {
color: #666666;
text-decoration: none;
font-weight: normal;}
#sidebar a:active {
color: #990000;
text-decoration: none;
font-weight: normal;}
#sidebar a:hover {
color: #990000;}
#current {
color: #990000;
font-weight: bold;}
Klappt aber nicht... Was mache ich falsch?
:confused: :confused: :confused: