Page 2 of 2 FirstFirst 12
Results 11 to 16 of 16

Thread: My J Query multi level menu has gone haywire

  1. #11
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Servers can be up and down and/or traffic between them and you can vary so much that sometimes they cannot be found.

    I found it, no problem. Adding background will help (jqueryslidemenu.css):

    Code:
    .jqueryslidemenu ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    background-color: #fff;
    }
    And possibly a negative top margin:

    Code:
    .jqueryslidemenu ul{
    margin: -1px 0 0 0;
    padding: 0;
    list-style-type: none;
    background-color: #fff;
    }
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  2. #12
    Join Date
    Nov 2008
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Thanks John

    John, I can't thank you enough. That did the trick and it's back to working perfectly now. I am puzzled, though, that I uploaded the revised css file, and it's obviously working, but when I go to http://www.molecreek.info/jqueryslidemenu.css it shows the file without its modifications. I've been tearing my hair out over the menu's flakey behaviour, so I'm not going to drive myself mad over this point - just can't understand it.

  3. #13
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Looks right to me. You must have a cached version of it somewhere. When you get to that file, refresh the browser. It should look OK then.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  4. #14
    Join Date
    Nov 2008
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default I think I'm losing it!

    I refreshed and even cleaned out my hard drive and it still came up the old way. But now I can see it's changed, which I knew it must have done to be working properly. Something else has changed now. The link colour is supposed to be white - it was white - and now it's black, same as the hover colour. I'm definitely losing it!

    But I sincerely appreciate your help in fixing my original problem!

  5. #15
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    That's what it's set to, well actually just off black (jqueryslidemenu.css around line 39):

    Code:
    .jqueryslidemenu ul li a:link, .jqueryslidemenu ul li a:visited{
    color: #333;
    }
    If you remove the highlighted it should revert to white. However, once visited the links will be #333 again. So it's better to leave that as is, changing only the color:

    Code:
    .jqueryslidemenu ul li a:link, .jqueryslidemenu ul li a:visited{
    color: #fff;
    }
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  6. #16
    Join Date
    Nov 2008
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Thanks, once again

    Feeling foolish; I knew it must be there in front of me, but kept missing it. Thanks you so much for your time and patience.

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
  •