pls compare this pg in FF and IE.. http://mayacove.com/cycle/photos_cycle.html
I had thought it was a z-index problem with IE, but it's not.. if I comment out all this code..
$(document).ready(function() {
$('#photos').cycle({
fx: 'none',
timeout: 0,
next: '#next',
prev: '#prev',
after: onAfter
});
then bg for div containing photos (none, i.e, transparent) is ok... but as soon as I apply .cycle() method, in IE div#photos acquires a white background.. (not just IE6 but later versions also..) the reason I need to wrap images in an extra div is that according to cycle plugin FAQ (http://jquery.malsup.com/cycle/faq.html) the only way to center photos of different widths is to wrap them in another div.. it is this div that acquires an extraneous bg-color (actually it acquires bg-color of body..) when apply .cycle() method to div containing slides..
is there a workaround here please...
thank you..