Re: [jQuery] Sneak Peek and Hover question

2006-11-03 Thread Glen Lipka
This worked perfectly by the way. Thank you so much! :) Glen On 10/27/06, abba bryant [EMAIL PROTECTED] wrote: Just a quick note. When you hit the quick links button I get an annoyinghorizontal shift in FF. You can fix with the following css rulehtml { height:100%; margin-bottom:1px; }It will

Re: [jQuery] Sneak Peek and Hover question

2006-10-27 Thread Erik Beeson
I don't see a flicker problem on FF or IE6. I DO see an image loading delay the first time you mouse over one of the tabs, but it looks the same in both browsers. This is easily avoided by preloading the images.--Erik On 10/27/06, Glen Lipka [EMAIL PROTECTED] wrote:

Re: [jQuery] Sneak Peek and Hover question

2006-10-27 Thread Bryan Buchs
I've tried positioning the background tab image on both the A *and* the LI elements. If the hover on the A flickers, the image in the LI behind it shows through instead of a white background. Erik Beeson wrote: I don't see a flicker problem on FF or IE6. I DO see an image loading delay

Re: [jQuery] Sneak Peek and Hover question

2006-10-27 Thread Glen Lipka
I think that technique is called double-buffering. I can do that, but is there a better way? It also seems like it is a little slow.GlenOn 10/27/06, Bryan Buchs [EMAIL PROTECTED] wrote: I've tried positioning the background tab image on both the A *and*the LI elements. If the hover on the A

Re: [jQuery] Sneak Peek and Hover question

2006-10-27 Thread Blair McKenzie
This approach stops load time by including hover and unhover backgrounds in the same graphic. This other one uses css to preload the hover image.BlairOn 10/28/06, Glen Lipka [EMAIL PROTECTED] wrote:I think that technique is called double-buffering. I can do that, but is there a better way? It

Re: [jQuery] Sneak Peek and Hover question

2006-10-27 Thread Glen Lipka
I saw this link here.http://evil.che.lu/2006/9/25/no-more-ie6-background-flickerIt includes this code:try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {} Would this have any negative effect?The single image technique is great because it also reduces page size.GlenOn

Re: [jQuery] Sneak Peek and Hover question

2006-10-27 Thread abba bryant
Just a quick note. When you hit the quick links button I get an annoying horizontal shift in FF. You can fix with the following css rule html { height:100%; margin-bottom:1px; } It will force the scrollbar to show in FF which is what is causing the weird jump in display. -- View this message

Re: [jQuery] Sneak Peek and Hover question

2006-10-27 Thread Glen Lipka
I think it's fixed. I used a combination of the single image technique and the JS referenced before. Although, i just tried turning off the JS and it still worked. I wonder if it is harmless. Hmm, now I am wondering. Should I remove it. Now, I am just noticing that the top nav is not highlighting