Auto Nav menus
Permalink
I am building a Concrete5 site but have come up against a small problem with the navigation.
I can insert a header nav block which works but I have some custom html to use from the source file and need to set up a custom template I think. Can anyone help point me in the right direction. Code below..
I can see there is CSS Class ('active') to work the on page element but this currently does not work in C5
Thanks in advance
Daivd
<div class="nav1">
<ul>
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Values & Vision</a></li>
<li><a href="#">Our Team</a></li>
<li><a href="#">News & Events</a></li>
<li><a href="#">Our Causes</a></li>
<li><a href="#">Donate & Support</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
I can insert a header nav block which works but I have some custom html to use from the source file and need to set up a custom template I think. Can anyone help point me in the right direction. Code below..
I can see there is CSS Class ('active') to work the on page element but this currently does not work in C5
Thanks in advance
Daivd
<div class="nav1">
<ul>
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Values & Vision</a></li>
<li><a href="#">Our Team</a></li>
<li><a href="#">News & Events</a></li>
<li><a href="#">Our Causes</a></li>
<li><a href="#">Donate & Support</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
If you need a point of reference Concrete5's default template uses this concept to indicate the current page.