Im building a website with a jquery header that fades one picture into the next (as you have all seen before). Take a look at a sample page here:
http://hqinternetsolutions.com/fullservice/index.html
In IE6, the images shift way over to the right creating a margin. I figured out what is causing it. In the jquery.innerfade.js file, there is a line that says:
for (var i = 0; i < elements.length; i++) {
$(elements[i]).css('z-index', String(elements.length-i)).**css('position', 'absolute').hide();**
};
The Position:absolute is causing the image to appear incorrectly in ie6. When I change the absolute to relative or fixed, the image appears in teh right place, but the next image loads below it until the fade is complete and then it shifts up. I cant seem to get the innerfade to work properly in ie. Any ideas?