Short answer is to resort the navigation index.

Long answer.....There are two indexes in CMS - The standard list index
and the nav man index.  Yes - unfortunately one is top-down order and
the other is bottom-up ordered.

You can either get users to sort the navigation order or if you are
outputing the list on the page then use render tags to display it
rather than just putting the list placeholder on your page.

e.g. here a normal list on a page:

<!IoRangeList>
<li><a href="<%list_mylist%>"><%hdl_headline%></a></li>
<!/IoRangeList>

And here's the render tag version:

<reddot:cms>
  <foreach itemname="item"
object="Context:CurrentPage.Elements.GetElement(list_mylist).Value">
    <htmltext>
      <li><a href="<%!! Store:item.GetUrl() !!%>"><%!!
Store:item.Headline !!%></a></li>
    </htmltext>
  </foreach>
</reddot:cms>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"RedDot CMS Users" group.
To post to this group, send email to RedDot-CMS-Users@googlegroups.com
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