I have a couple of issues maybe some here can help me out with.
http://test.dominalawny.com/
I have a top main navigation & a side navigation which is persistant on all pages.
The side nav are sub pages of ’Areas of Practice’ page
One oddity of this setup is, when I am on the page of a sub nav item, the Areas of Practice is a link.
How can I prevent this?
Next, for some reason the side nav has a beginning <li> but never closes it, and I am not sure where it’s form because all pages are accounted for.
Main Nav:
[!Wayfinder? &startId=`0` &outerTpl=`wfmainOuter` &level=`1` &hereTpl=`hereText` &rowIdPrefix=`main` !]
Side Nav:
[!Wayfinder? &startId=`2` &outerTpl=`sideNav` &level=`1` &hereTpl=`hereText` &rowIdPrefix=`side` !]
wfmainOuter:
hereText
<li[+wf.classes+]>
[+wf.linktext+]
[+wf.wrapper+]
</li>
sideNav:
<ul id="sideNav">
<li class="[+wf.classes+]" id="[+wf.id+]">[+wf.wrapper+]</li>
</ul>
output for construction-accidents :
<div id="mainnav">
<ul>
<li id="main1"><a href="/home" title="Domina Law NYC" >HOME</a></li>
<li id="main2" class="active"><a href="/areas_of_practice" title="Areas of Practice" >AREAS OF PRACTICE</a></li>
<li id="main8"><a href="/case-results" title="Case Results" >CASE RESULTS</a></li>
<li id="main11"><a href="/about" title="About" >ABOUT</a></li>
<li id="main9"><a href="/contact" title="Contact" >CONTACT</a></li>
<li id="main10" class="last"><a href="/en-espanol" title="En Español" >EN ESPAÑOL</a></li>
</ul>
sideNav output:
<ul id="sideNav">
<li class="" id="">
<li id="side3"><a href="/construction-accidents" title="Construction Accidents" >CONSTRUCTION ACCIDENTS...
Thanks for your time.
Rich