I'm trying to build out a left nav where the nav left only displays
pages that are children to the parent page. For instance I have a
list

-colors (this should not show on the left nav)
--green (this should show)
--blue
--red
----pink (this should show)
--yellow


this is the HTML that should show for the Color page
<ul>
<li><a href="#">green</a></li>
<li><a href="#">blue</a></li>
<li><a href="#" class="active">red</a>
 <ul>
 <li><a href="#">pink</a></li>
 </ul>
</li>
<li><a href="#">yellow</a></li>
</ul>


*Once again any help much obliged*
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"RedDot CMS Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/RedDot-CMS-Users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to