At a glance it seems the structure of your nested lists (for the drop down menus themselves) is invalid. For example, taking a snippet of code from it:
Code:
<li><a href="apostolate.htm">Apostolate</a></li>
<ul>
<li><a href="bereavement.htm">Bereavement Support</a></li>
<li><a href="funerallunch.htm">Funeral Luncheons</a></li>
<li><a href="homebound.htm">Homebound Ministry</a></li>
<li><a href="lifechain.htm">Life Chain</a></li>
<li><a href="marchforlife.htm">March For Life</a></li>
<li><a href="faithcommunities.htm">Small Faith Communities</a></li>
</ul>
Nested ULs should be defined within the master LI in question, so the above should instead be:
Code:
<li><a href="apostolate.htm">Apostolate</a>
<ul>
<li><a href="bereavement.htm">Bereavement Support</a></li>
<li><a href="funerallunch.htm">Funeral Luncheons</a></li>
<li><a href="homebound.htm">Homebound Ministry</a></li>
<li><a href="lifechain.htm">Life Chain</a></li>
<li><a href="marchforlife.htm">March For Life</a></li>
<li><a href="faithcommunities.htm">Small Faith Communities</a></li>
</ul>
</li>
You need to fix this for all occurrences of this error.
Bookmarks