Hi All,
I have searched all over for how I would achieve this but not having much luck at the moment. Could do with a shove in the right direction.
I am working on a V10 installation.
What I would like is to call a specific Section for an unordered list etc. Not all of them, just a specific section. And with the sub sections in the <li>'s etc
So I would get
	So the sub pages would be generated by Actinic for the specified top section.
How would I go about this?
					I have searched all over for how I would achieve this but not having much luck at the moment. Could do with a shove in the right direction.
I am working on a V10 installation.
What I would like is to call a specific Section for an unordered list etc. Not all of them, just a specific section. And with the sub sections in the <li>'s etc
So I would get
Code:
	
	<ul class="single_section">
      <li class="single_section_li"><a href="top_level_section_1.htm">Specific Section</a>
        <ul>
          <li><a href="subpage1.htm" target="_self">subpage1</a></li>
          <li><a href="subpage2.htm" target="_self">subpage2</a></li>
          <li><a href="subpage3.htm" target="_self">subpage3</a></li>
          <li><a href="subpage4.htm" target="_self">subpage4</a></li>
        </ul>
      </li>
<ul>
How would I go about this?

Comment