Hi,
I have a number of categories which all fall within one channel and I need to be able to seperate them with specific headers. I know that I can make parent categories and as such they can be manipulated within the css to look like headers. I don’t want them to be links however.
See the code that I have at the moment which is how I want the page to appear:
<ul id="inner_pg_ul">
<h3>C3 | Integrity for…</h3>
<p> <li><a href="http://{path=product/page/category/finance}id=current">Finance Functions</a></li><br />
<li><a href="http://{path=product/page/category/performance}id=current">Performance Management</a></li><br />
<li><a href="http://{path=product/page/category/reference_data_applications}id=current">Reference Data Applications</a></li><br />
<li><a href="http://{path=product/page/category/warehouse}id=current">Rapid Warehouse Development</a></li><br />
<li><a href="http://{path=product/page/category/policy}id=current">Policy Decision Making</a></li><br />
<li><a href="http://{path=product/page/category/carbon}id=current">Carbon Reporting</a></li><br />
</p><h3>Product Info</h3>
<p> <li><a href="http://{path=product/page/category/features}id=current">Features</a></li><br />
<li><a href="http://{path=product/page/category/business_analyst}id=current">For the business analyst</a></li> <br />
<li><a href="http://{path=product/page/category/file}id=current">File formats</a></li> <br />
<li><a href="http://{path=product/page/category/data}id=current">Data store</a></li> <br />
<li><a href="http://{path=product/page/category/security}id=current">Security & auditing</a></li><br />
<li><a href="http://{path=product/page/category/support_plan}id=current">Support Plan Options</a></li><br />
</p><h3>TECHNICAL INFO</h3>
<p> <li><a href="http://{path=product/page/category/robust_development}id=current">robust development</a></li><br />
<li><a href="http://{path=product/page/category/tech_spec}id=current">technical specifications</a></li><br />
</ul>This doesn’t give the end user (my client) very much control within Expression engine.
The code that I have without headers is:
<ul id="inner_pg_ul">
{exp:channel:categories channel="product_pages" style="nested" id="category-nav"}
<a href="http://{path=">{category_name}</a>
{/exp:channel:categories}
</ul>This allows the user to input categories and place them where they wish, but it doesn’t have the headers within the navigation sidebar.
Is the answer to have three channels and move the categories into these channels? Is there a better way so that there is only one channel?
The web page is: http://www.c3integrity.com/index.php/product
Many thanks