Results 1 to 4 of 4

Thread: All Level Menu Generator - Firefox Compatibility Issues

  1. #1
    Join Date
    Mar 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default All Level Menu Generator - Firefox Compatibility Issues

    1) Script Title: All Levels Menu Generator

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici.../generator.htm

    3) Describe problem:

    My menu is working correctly on Internet Explorer but not Firefox 3. The menu is invisible until hovering over the options, and the submenus show but (1) do not disappear or (2) do not appear in the correct place.

    I've gone through my code, and it looks fine to me, but my knowledge is limited as far as Firefox compatibility.

    My page: http://www.stmalachypgh.org/new

    Any help or advice would be greatly appreciated.

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    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.
    DD Admin

  3. #3
    Join Date
    Mar 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks so much for your help!

  4. #4
    Join Date
    Mar 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    As info, I've figured out the second part of my question in regard to the menus not showing up until hovering over them. Thanks again, though.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •