Hello
First off, I’m really sorry I have to post here. I try very hard to figure things out on my own and simply cannot wrap my brain around this one. And just so everybody knows, I’ve read the wiki, documentation, and the muddgydogpaw site examples.
I have a fairly simple Sliding Doors Navigation consisting of 3 links, with id="current" for the page you’re on.
<div id="nav">
<ul>
<li id="current"><a href="index.htm">Home</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Services</a></li>
</ul>
</div>
Now, when you’re on the home page for example, there are "sub-links". These links below would change if you went to a different Parent page, quite easy to do when creating a site in Dreamweaver.
<div id="nav2">
<ul>
<li><a href="about.htm">About</a></li>
<li><a href="#">My sites</a></li>
</ul>
</div>
Now the problem is that I can’t seem to duplicate this with Wayfinder. I’m sure I could do it with manual links, but then if I had a new
parent page or child page I’ll have to change the template, and that doesn’t make sense.
I guess I’m just trying to find some simple explanation on how to do this. Even if you forget about the bottom navigation and just
try and explain how to convert a simple UL into Wayfinder. Every time I do it, all the pages show up, I can’t seem to say "Show only these
certain pages here for the top nav" and then "show these certain pages for the bottom UL.
Any help would be very wonderful.
Sorry again for posting this, I know it’s inconvenient to be asked the same questions over and over.