SPRY menu not dropping down on certain pages

dstodart

New Member
I'm having a lot of problems now that I've uploaded this webpage. I created this webpage in Dreamweaver and used the SPRY menu template and everything worked perfectly in Dreamweaver but now that I have uploaded it I can not use the drop downs on like 7 pages. When you are on the shop page, the dinning page, Living, Directions, Design, Events, and the contact page the SPRY menu will not drop down. Could someone look at my site and perhaps my code and tell me what I am doing wrong on those pages?
http://discoverclearfield.com/shop.html
http://discoverclearfield.com/dining.html
there are a couple of the pages that don't work.
Thanks so much.
 

TheWebGuy

New Member
You need to remember to add your HTML to your navigation every time you add a new page. Right now your site's navigation looks something like this (I just took a few lines):

<li><a class="MenuBarItemSubmenu" href="#">Learn</a>
<ul>
<li><a href="aac.html">History of Clearfield</a></li>
<li><a href="mainstreet.html">Main Street Initiatives</a></li>
</ul>
</li>

<li><a href="shop.html">Shopping</a></li>
<li><a href="dining.html">Dining</a></li>
----

What you need is a navigation that looks something like this:
<li><a class="MenuBarItemSubmenu" href="#">Learn</a>
<ul>
<li><a href="aac.html">History of Clearfield</a></li>
<li><a href="mainstreet.html">Main Street Initiatives</a></li>
</ul>
</li>

<li><a href="shop.html" class="MenuBarItemSubmenu">Shopping</a>
<ul>
<li><a href="aac.html">History of Clearfield</a></li>
<li><a href="mainstreet.html">Main Street Initiatives</a></li>
</ul>
</li>
<li><a href="dining.html">Dining</a></li>

Do you see how under the "Shop" list item you have another UL nested inside? That will create the drop down for the Shop page. Hope this helps.
 
Top