Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Anything Slider Help, Change Animation to Fade Re: Anything Slider Help, Change Animation to Fade

#68604
sjferwerda
Member

For those having issues with IE8 fading correctly, I found the solution by looking at this post:

http://www.mail-archive.com/jquery-en@g … 88321.html

Basically, all you have to do is remove the absolute positioning CSS rule that Chris added to:
#.anythingFader .wrapper ul { width: 9999px; list-style: none; position: absolute; top: 0; left: 0; background: #eee; border-top: 3px solid #e0a213; border-bottom: 3px solid #e0a213; margin: 0; }

In my instance, I changed it to:

#.anythingFader .wrapper ul { width: 9999px; list-style: none; background: #eee; border-top: 3px solid #e0a213; border-bottom: 3px solid #e0a213; margin: 0; }

I think "position: absolute; top: 0; left: 0;" may be redundant regardless and in my case it did not break anything else.