Found the solution (didn't take this long, just didn't work on it for a while).
The plugin positions the outer element (the one you specify) relatively and the inner elements (the ones that are, for ex crossfaded) absolutely. Applying this fixes it: HTML: <ul id="cpcontainer"> <li>...</li> <li>...</li> </ul> CSS: #cpcontainer li{ position:absolute; left:0; right:0; } Hope that helps! On Sep 24, 3:32 pm, palam <[EMAIL PROTECTED]> wrote: > I'm using thecycleplugin on this page:http://oliverstephenson.in/home > > If you disable JS and check, it'll be positioned properly. But once > the JS is applied, the container (#features) is thrown off to theright, > outside the page (causing a horizontal scroll bar), only in IE6 > and IE7. Works fine in other browsers. > > What do I do about this? > > Thanks!