-
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;
}
-
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. :D
-
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.
-
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!
-
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;
}
-
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.:o