[jQuery] Re: superfish + bgiframe problem on IE6

2008-11-27 Thread theneemies
I'm having the same issue of the drop down pushing the content below it further down: http://tinyurl.com/6qczuv. It would be great if someone could point me to where the issue might be. Joel Birch wrote: Hi Bob, You seem to be missing some very important CSS. The submenu ul elements

[jQuery] Re: superfish + bgiframe problem on IE6

2008-10-22 Thread Bob Sawyer
So, the problem I'm having with IE6/Superfish is that the dropdown menus push all other content down, rather than displaying on top of the other content. My superFish code is fairly straightforward: $(document).ready(function() { //superFish $('ul#menu').superfish({

[jQuery] Re: superfish + bgiframe problem on IE6

2008-10-22 Thread Joel Birch
Hi Bob, You seem to be missing some very important CSS. The submenu ul elements must be position absolute. Also, I don't see any 'top' or 'left' values or hover rules for them. Please refer to the original demo CSS files for further clues. Joel Birch On 23/10/2008, Bob Sawyer [EMAIL PROTECTED]

[jQuery] Re: superfish + bgiframe problem on IE6

2008-10-03 Thread Ettiene
hmm.. I thouhgt I was using the latest method :) I've downloaded the latest version of bgiframe which is currently on the server. So what you're saying is that I replace my (complicated) call to superfish in my head with the simple one like you listed, and it should do the trick? I'll try that

[jQuery] Re: superfish + bgiframe problem on IE6

2008-10-03 Thread Joel Birch
Hello Ettiene, There is now a much simpler and less buggy way of using bgIframe. It is described on the updated Superfish documentation page, here: http://users.tpg.com.au/j_birch/plugins/superfish/#sample2 You will need to make sure you are using the most up-to-date version of bgIframe which

[jQuery] Re: superfish + bgiframe problem on IE6

2008-10-03 Thread Ettiene
Ok, I'm struggling a bit here... My call in the head looks like this: $(document).ready(function(){ $(ul.nav).superfish() .find(liulli:has(ul)).addClass(isparent) .find('ul').bgIframe({opacity:false}); }); I've got that first find in there to add a class

[jQuery] Re: superfish + bgiframe problem on IE6

2008-10-03 Thread Joel Birch
Hi Ettiene, You need to add an .end() to before you add the find('ul').bgIframe() like so: $(document).ready(function(){ $(ul.nav).superfish() .find(liulli:has(ul)).addClass(isparent).end() .find('ul').bgIframe({opacity:false}); }); Joel Birch.

[jQuery] Re: superfish + bgiframe problem on IE6

2008-10-03 Thread Joel Birch
Or for better performance: $('ul.nav').superfish() .find('ul').bgIframe({opacity:false}) .find('li:has(ul)').addClass('isparent'); No .end() needed this way either.

[jQuery] Re: superfish + bgiframe problem on IE6

2008-10-03 Thread Joel Birch
Hmm, this is the first time I've heard of this problem using the newer method of applying bgIframe. Are you absolutely positive you are using the bgIframe version from the link I gave you? The issue you describe has happened before but I can't remember what the cause or solution was (because I