i'm trying to get something similar to:
http://community.actinic.com/showthread.php?t=23159
still... after god knows how many months, i return to this, and its still uber complex.
What i want, is this:
from what i'v gathered, from various experiments, creating this kind of culled sitemap esque navigation is not possible. this is becasue the <ul> tags can never be correctly positioned.
<actinic:variable name="ListIndex" /> is useful in this sense, becasue it allows you to select the first and last items, wrapping an <ul> around them, but for items mid list, (such as the items on the second section <li>).
i'm ultra confused by this, can anyone shed some light? perhaps i'm missing something vital.
What i'd really like is perhaps a snippets callery, where very useful snippets for thigs like this are collected. to saze us all a lot of time when we have problems like this one. i'v been unwittingly boggling over this one for about 4 hours now.
http://community.actinic.com/showthread.php?t=23159
still... after god knows how many months, i return to this, and its still uber complex.
What i want, is this:
HTML Code:
<div> <p>Level 1 section</p> <ul> <li>level 2 section</li> <li>level 2 section</li> <li>level 2 section</li> </ul> <p>Level 1 section</p> <ul> <li>level 2 section</li> <li>level 2 section</li> <li>level 2 section</li> </ul> <p>Level 1 section</p> <ul> <li>level 2 section</li> <li>level 2 section</li> <li>level 2 section</li> </ul> </div>
<actinic:variable name="ListIndex" /> is useful in this sense, becasue it allows you to select the first and last items, wrapping an <ul> around them, but for items mid list, (such as the items on the second section <li>).
i'm ultra confused by this, can anyone shed some light? perhaps i'm missing something vital.
What i'd really like is perhaps a snippets callery, where very useful snippets for thigs like this are collected. to saze us all a lot of time when we have problems like this one. i'v been unwittingly boggling over this one for about 4 hours now.
HTML Code:
<actinic:block if="fun%20%3d%3d%20true"> time flies </actinic:block>
Comment