I have a challenge for anybody willing to participate. I have to have a list of categories be displayed as the following html.
<ul>
<li>Documents</li>
<ul>
<li>Why Cartegraph</li>
<li>Solutions Materials</li>
<li>Services Materials</li>
<li>Success Stories</li>
<li>Partner Materials</li>
<li>Technical Specifications</li>
<li>Presentation Library</li>
</ul>
<li>Other Resources</li>
<li>Sales Teams</li>
<li>Sales Tools</li>
<ul>
<li>Why Cartegraph</li>
<li>Solutions Materials</li>
<li>Services Materials</li>
<li>Success Stories</li>
<li>Partner Materials</li>
<li>Technical Specifications</li>
<li>Presentation Library</li>
</ul>The problem is when EE outputs categories to lists, it nests the <ul> in a <li> I need the <ul> to be a sibling of the <li>. Has anyone run across an need for this? Basically I need the nested categories to be grouped. That could be in a <div>, a <ul> or any other element for that matter. It doesn’t really matter to me I just need it in it’s own group.
Here is my page http://www.cartegraph.com/intranet/
The code behind this page represents how it should work. I appreciate any help!
Lucas JD