View Single Post
  #3 (permalink)  
Old Apr 19th, 2007, 15:46
moojoo's Avatar
moojoo moojoo is offline
Moderator
Join Date: Aug 2005
Location: Texas
Age: 31
Posts: 1,993
Blog Entries: 1
Thanks: 0
Thanked 32 Times in 32 Posts
Re: Getting rid of flicker on Navigation bar

One thing to note that is not included in the example that Ryan posted is that you could also pre load the images with css.

In your CSS something like:

#fooPreLoad {
height:0;
overflow:hidden;
background: url("foo.jpg") top left no-repeat;
display:none !important;
}

then the images will be loaded before the page loads fully thus cached thus out of the way.

in your HTML put:

<div id="fooPreLoad">&nbsp;</div>
__________________
I hate IE 6. Just sayin....
http://www.mevans76.com

Last edited by moojoo; Apr 19th, 2007 at 15:48.
Reply With Quote