[jQuery] Re: Superfish issues in ie6 and 7

2009-10-07 Thread neonwiredpixels
You were correct, i was using a transparent menu and this was the issue. Many Thanks. On Oct 1, 4:14 pm, Charlie wrote: > i've found if the li doesn't have a background it does what you are > describing inIE, try adding background even if it has to be a transparent gif > (gif vs png to avoid I

[jQuery] Re: Superfish issues in ie6 and 7

2009-10-01 Thread Charlie
i've found if the li doesn't have a background it does what you are describing in IE, try adding background even if it has to be a transparent gif (gif vs png to avoid IE6 png issues) i'm sure others may have solutions but has worked for me in past neonwiredpixels wrote: In ie6 and 7 only

[jQuery] Re: Superfish Issues

2008-09-09 Thread Joel Birch
As shown in the Superfish documentation, you need to call supersubs() after superfish() in the chain. Give that a go and see if it works. Joel Birch.

[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-21 Thread Joel Birch
On 22/11/2007, cromeis <[EMAIL PROTECTED]> wrote: > It worked! I can't thank you enough for your help Joel! You totally > made my day! And thank you Jared for your feedback as well. Great! With responses like that, you will always be most welcome ;) Joel Birch.

[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-21 Thread cromeis
It worked! I can't thank you enough for your help Joel! You totally made my day! And thank you Jared for your feedback as well.

[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-20 Thread Jared
I don't know if this helps, but I preferred to make the entire latticework ul/li apparatus transparent (background/border: none) and use margin/padding/background/border for a container div, and I thought it worked pretty good. My problem now is that I need to leave breadcrumbs for highlight, so

[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-20 Thread Joel Birch
On 21/11/2007, cromeis <[EMAIL PROTECTED]> wrote: > #nav li:hover, #nav li.sfHover, > #nav li:hover a, #nav li:sfHover a, > #nav a:hover, #nav li a:hover, > #nav a:focus, #nav a:active { > color:#51749F; > background:#ff; > text-decoration:line-through; > } Oh

[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-20 Thread cromeis
Hi Joel, Thank you so much for your css suggestion and for explaining your choice of a class vs. an id. Unfortunately the css suggestion did not correct the issue. I updated the css with the following code: #nav li:hover, #nav li.sfHover, #nav li:hover a, #nav li:sfHover a, #nav a:hover, #nav

[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-16 Thread Joel Birch
Hi Carleigh, Sorry for the delay in replying - I've been really busy. This should solve it I think. In the css rule with the selector: #nav li:hover, #nav li.sfHover, #nav a:focus, #nav a:hover, #nav a:active { ... } you need to have this selector also: #nav li:hover a, #nav li:sfHover a I noti