I’m trying to make a “mega menu” within EE Categories. I already have the HTML and CSS working and now trying to get it working within EE is proving difficult (for me anyway).
This menu will be for a specific category group. It then basically needs to display need to display the top level categories and any first level child categories (sub-categories). I know I could use the the standard channel:categories tag to create a list, but this really doesn’t give me anywhere near the amount of control I need.
The format I’m trying to achieve is:
<ul id="menuleft" class="group">
<li class="drop"><a href="http://category">Top Level Product Category</a>
<!-- Begin container -->
<div class="dropdown">
<h2>Top Level Product Category</h2>
<p> <ul><br />
<li><br />
<a href="#">A Sub Category</a><br />
A brief paragraph about this particular category. It could be long if required but best to keep it short.<br />
</li><br />
<li><br />
<a href="#">A Sub Category</a><br />
A brief paragraph about this particular category. It could be long if required but best to keep it short.<br />
</li><br />
<li><br />
<a href="#">A Sub Category</a><br />
A brief paragraph about this particular category. It could be long if required but best to keep it short.<br />
</li><br />
</ul><br />
</div><br />
<!-- End container --><br />
</li><br />
<li class="drop"><a href="http://category">Top Level Product Category</a><br />
<!-- Begin container --><br />
<div class="dropdown"><br />
</p><h2>Top Level Product Category</h2>
<p> <ul><br />
<li><br />
<a href="#">A Sub Category</a><br />
A brief paragraph about this particular category. It could be long if required but best to keep it short.<br />
</li><br />
<li><br />
<a href="#">A Sub Category</a><br />
A brief paragraph about this particular category. It could be long if required but best to keep it short.<br />
</li><br />
<li><br />
<a href="#">A Sub Category</a><br />
A brief paragraph about this particular category. It could be long if required but best to keep it short.<br />
</li><br />
</ul><br />
</div><br />
<!-- End container --><br />
</li><br />
</ul>I’m also looking to lose the category url indicator as I’m using Low Seg2Cat to create cleaner URLs.
Please help - really need to get this working ASAP (like a week ago) :S
Thanks, Richard.
[Mod Edit: Moved to the Community Help forum]