In advance, I did search and found nothing that helped, including the thread discussing the "treeMenu" function, which doesn't do what I want (at least not quite).
What I'm after is a really simple, static navigation with the following structure, visible on every page:
<ul id="menu">
<li>item 1</li>
<li>item 2
<ul>
<li>item 2a</li>
<li>item 2b</li>
</ul>
</li>
<li>item 3
<ul>
<li>item 3a</li>
<li>item 3b</li>
<li>item 3c</li>
</ul>
</li>
</ul>
In the past, and with every other CMS I've tried out, this has always been a doddle, and I picked ProcessWire today because I though it looked nice, clean and simple; the 30 odd lines of code in the other thread which talk about achieving something similar to this is NOT what I would consider to be simple (no offence intended).
Is there no other way around this? Surely this is really basic stuff?...
I'm not a programmer, but I imagine it could work something like "for each links as link, if link has children show them to n level..."?