[jQuery] Re: Cycle flashes all images on pageload

2009-06-03 Thread Rick Faircloth
Adding this to my CSS fixed the problem for me... - to the image container (#photos), position:relative - then a new line: #photos img { position:absolute; width:800px; height;125px } The height and width above are the same as my #photos container and images. hth, Rick On Wed, Jun 3, 2009

[jQuery] Re: Cycle flashes all images on pageload

2009-06-03 Thread Charlie
overflow: hidden should help. Also you are loading 2 instances of jQuery file which can cause issues instamattic wrote: Is there a way to prevent the brief display of all the photos in the cycle when the page loads? Problem affects IE7 and maybe others. http://scotthardinghomes.com/

[jQuery] Re: Cycle flashes all images on pageload

2009-06-03 Thread instamattic
Thanks to both of you. overflow:hidden fixed it.