Unusual Spry DropDown Single Menu Item Fail
I'm running Dreanweaver CS6 on a Windows 7 Pro laptop. I've created a new website that incorporates a Spry horizontal dropdown menu system from within DW. Following is the code snippet for the menu.
<tr>
<td><ul id="MenuBar1" class="MenuBarHorizontal">
<li><a href="../index.html">Home</a></li>
<li><a href="../about.html">About FSTI</a></li>
<li><a class="MenuBarItemSubmenu" href="../education.html">Education</a><ul>
<li><a class="MenuBarItemSubmenu" href="../training.html">Training</a><ul>
<li><a href="../BFJA.html">Bolted Flange Joint Assembly</a></li></ul></li>
<li><a href="../workshops.html">Workshops</a></li>
<li><a href="../seminars.html">Seminars</a></li>
</ul>
</li>
<li><a href="../events.html">Events</a></li>
<li><a href="../projects.html">Projects</a></li>
</ul></td>
</tr>
All the menu items function correctly when selected, with one exception. Once you select the 'About FSTI' menu item (about.html), from that point on further attempts to select menu items result in the newly selected menu item being ADDED to the previous path.
Example: When selecting 'Education' (education.html) AFTER having selected and viewed 'About FSTI' (about.html), the following path results www.domain.org/about.html#Education.html. The desired page obviously fails to load and further attempts to select other menu bar links only result in swapping the selected new link with whatever link happened to appear after .../about.html, which remains permanently selected.
I can't see the problem for the life of me. Thanks for any solutions provided.
John
