Results 1 to 4 of 4

Thread: jQuery Multi Level CSS Menu #2 Cross Platform Issues

  1. #1
    Join Date
    Jan 2009
    Location
    NEW YORK CITY
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default jQuery Multi Level CSS Menu #2 Cross Platform Issues

    1) Script Title: jQuery Multi Level CSS Menu #2

    2) Script URL (on DD):
    http://www.dynamicdrive.com/style/cs...el_css_menu_2/

    3) Describe problem:

    My Coding for the menu above works in IE perfectly, but not FF, Google or Safari.

    Here's my site:

    http://www.trengovestudios.com/home.htm

    Why isnt the coding working in the other browsers? I validated the site on w3c.org and the only issues were with the <ul> and <li> tags which I assume were because of the css in the menu?



    Thanks

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Your not making the submenu right, here look:
    Code:
    <div id="myslidemenu" class="jqueryslidemenu">
      <ul><!-- Essential -->
        <li><a href="booking.php">Booking</a></li><!-- Main link -->
        <li><a href="short.php">Short Cuts</a><!-- Don't end the li, lets call it li:a. This will be a drop -->
          <ul><!-- Essential -->
            <li><a href="Dogs.php">Dogs</a></li><!-- Dropdown -->
            <li><a href="Cats.php">Cats</a></li><!-- Dropdown -->
          </ul><!-- Essential -->
        </li><!-- Ending li:a -->
      </ul>
      <br style="clear: left" />
    </div>
    Take a look at the comments.
    Last edited by Nile; 01-09-2009 at 08:09 PM.
    Jeremy | jfein.net

  3. The Following User Says Thank You to Nile For This Useful Post:

    esynctric (01-09-2009)

  4. #3
    Join Date
    Jan 2009
    Location
    NEW YORK CITY
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Ok, I see what I did, I ended the sub categories with </li> tags when I wasnt suppose to...I cant believe I overlooked that! You just lifted 10 LBS off my shoulder! I just tested it in the other browsers and it worked great!!! THANKS!!!

  5. #4
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Haha - glad to help anytime. Your welcome.
    Jeremy | jfein.net

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
  •