Sebsemillia Posted August 21, 2013 Report Share Posted August 21, 2013 Hallo, ich habe ein paar eigene Content Elemente erstellt und in einem Content Block zusammengefasst. Die Anzeige dessen funtioniert auch wunderbar, nur bekomme ich es leider irgendwie nicht hin den "active" Zustand eines Elementes, wenn man sich auf diesem befindet, anzuzeigen. Hier ist mein Code soweit: <ul> {foreach name=aussen item=box_data from=$_content_10} <li class="{$box_data.title}{if $box_data.active} active{/if}"> <a href="{$box_data.link}" title="{$box_data.title}"> {$box_data.title}</a> </li> {/foreach} </ul> [/HTML] Kann mir jemand weiter helfen? Danke! Link to comment Share on other sites More sharing options...
Sebsemillia Posted September 3, 2013 Author Report Share Posted September 3, 2013 Ich habe das Problem jetzt folgendermaßen selber lösen können: {content block_id=10 levels=false} {if $_content_10|count > 0} <nav id="MainNav"> <ul> <li class="home"><a class=" {if $page == 'index'}active{/if}" href="./" title="Startseite">Home</a></li> {foreach name=aussen item=box_data from=$_content_10} <li class="{$box_data.title}"><a class="{if $box_data.active} active{/if}" href="{$box_data.link}" title="{$box_data.title}">{$box_data.title}</a></li> {/foreach} </ul> </nav><!-- #MainNav --> {/if} [/HTML] Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.