CK84 Posted October 17, 2011 Report Share Posted October 17, 2011 Hallo, ich habe ein Menu mit CSS gemacht. Ich möchte jetzt jedoch den aktuellen Menupunkt auf die class="active" setzen um diesen farblich hervorzuheben. <div id="nav_header"> <div class="hlist"> <ul> <li id="start"><a href="http://www.abc.de/index.php"><span>Startseite</span></a></li> <li><a href="http://www.abc.de/index.php?s=abcaktuell"><span><em>Aktuell</em></span></a></li> <li><a href="http://www.abc.de/standort.abc.php"><span>Standorte</span></a> <ul> <li><a href="http://www.abc.de/standort.abc.php">abc</a></li> <li><a href="http://www.abc.de/standort.abc.php">abc</a></li> <li><a href="http://www.abc.de/standort.abc.php">abc</a></li> </ul> </li> <li><a href="http://abc.org/index"><span>abc</span></a></li> </ul> </div> </div> </div> Wenn ich auf den 1. Menupunkt <li id="start"><a href="http://www.abc.de/index.php"><span>Startseite</span></a></li> klicke, dann soll dieses <li class='active' bekommen. Also müsste ich doch abfragen <if aktuelle url = http://www.abc.de/index.php>} <li id="start" class="active"><a href="http://www.abc.de/index.php"><span>Startseite</span></a></li> [/code] Jedoch bekomme ich nur eine weiße Seite, der Syntax der <if>-Anweisung wird nicht stimmen. Kann mir wer helfen? Link to comment Share on other sites More sharing options...
CK84 Posted October 17, 2011 Author Report Share Posted October 17, 2011 Also so müsste mein <li> aussehen <li class="{if ?????} active{/if}"><a href="http://shop.de/index"><span>Ersatzteilshop</span></a></li>[/CODE] nur was schreibe ich zum Vergleichen der URL in die <if>-Anweisung? {if url == 'http://shop.de/index'} ??? Link to comment Share on other sites More sharing options...
CK84 Posted October 17, 2011 Author Report Share Posted October 17, 2011 <li class="{if $link_data =='http://beispiel/index'} active {/if}">[/CODE] Nur leider schreibt er das active nicht in die klasse, sondern die class=" ". Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.