Hey,
I'm making some real progress here with the navigation manager. Thanks
for all of the help. I've got another two new questions.

With our subsites, we want to hide the subsite "home" link in the
navigation when you are on that page. How would I do that?

I know it would be an if/else statement similar to this, but it what
needs to be added (other than another "else")

<reddot:cms>
  <if>
    <query valuea="Context:Current.Id" operator="=="
valueb="Context:LastIdex.Id">
      <htmltext>
        <li class="active expanded">
      </htmltext>
    </query>
    <query type="else">
        <htmltext>
            <li class="expanded">
        </htmltext>
    </query>
  </if>
</reddot:cms>
            <a href="<%!! Context:CurrentIndex.GetUrl() !!%>"><%!!
Context:CurrentIndex.Headline !!%></a>
<reddot:cms>
  <if>
    <query valuea="Context:Current.Id" operator="=="
valueb="Context:LastIdex.Id">
      <htmltext></htmltext>
    </query>
    <query type="else">
        <htmltext>
            <ul><navigation:nextlevel></ul>
        </htmltext>
    </query>
  </if>
</reddot:cms>
        </li>

Also, how do you handle home pages that need to be listed in the
navigation? Unless you have to instances of the same page and sharing
the content (which can cause problems), I don't see how you can refer
to the current page in the navigation as well as its children.

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