Hi,
I am new to EE and I am trying to wrap my brain around how categories work in EE. I am chunking up a basic HTML template and trying to create a navigation bar using an unordered list and have EE display this list of the categories that I have in a particular category group.
I have created a category group called “content” which has the categories “tech”, “cars”, “sports”, etc. I have channels such as “articles”, “pictures”, etc. What I’m looking for would be something like this:
<ul>
<li><a href="/tech">Tech</a>
<ul><li>Articles</li>
<li>pictures</li>
<li>etc…</li>
</ul></li>
<li><a href="/cars">Cars</a>
<ul><li>Guides</li>
<li>Pictures</li>
<li>etc…</li>
</ul></li>
</ul>So my question is whether I am misunderstanding how categories work in EE and if not, how do I use tags to create this sort of structure and secondly. The user guide seems to suggest that displaying categories is related to a specific channel? Any help is much appreciated!