> I'm struggling to get my navigation to output the way that I want it.
> Here is my current page structure (this is a dev environment that I am
> trying to get working)

If I understand what you're asking for, that is exactly what we are
doing on a number of projects (using jQuery and SuperFish). We use two
content classes for navigation. One for the first level, and one for
levels 2 and beyond. A stripped-down version of the top-level one
looks like this:

<ul class="sf-menu">
<li><a href="<%!! Context:CurrentIndex.GetUrl() !!%>"
title="Home">Home</a></li>
<navigation:nextlevel>
</ul>


And the one for levels 2+ looks like this:

<li>
<a href="<%!! Context:CurrentIndex.GetUrl() !!%>"><%!!
Context:CurrentIndex.Headline !!%></a>
<reddot:cms>
<if>
  <query valuea="Context:CurrentIndex.HasChildren()" operator="=="
valueb="Bool:True" >
      <htmltext>
      <ul>
        <navigation:nextlevel>
      </ul>
    </htmltext>
  </query>
</if>
</reddot:cms>
</li>


--~--~---------~--~----~------------~-------~--~----~
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