On Fri, Oct 29, 2010 at 8:23 AM, Ian Weller <ian@ianweller.org> wrote:
On Fri, Oct 29, 2010 at 01:39:55AM -0500, Sijis Aviles wrote:
> Are either of you able to take any steps to consistently reproduce this?
> I've tried several times and i don't see it happening.

Just looked at the CSS for those two slides I'm having issues with:

background-image: url(../images/banners/printing-made-easy.png), -moz-radial-gradient(30% 30% 45deg, circle farthest-side, #6E6E6E, #3B3B3B);
background-image: url(../images/banners/printing-made-easy.png), -webkit-gradient(radial, 30% 30%, 0, 30% 30%, 900, from(#6E6E6E), to(#3B3B3B));

I'm betting my version of Firefox (not *that* old) can't handle
gradients :( Which is interesting because (I think) they showed up fine
running 'make test' in fedora-web.git.

--
Ian Weller <ian@ianweller.org>
Where open source multiplies: http://opensource.com

That was the same piece of css code that was making the slides hidden in IE7. Once i removed the moz-radial and -webkit-gradient stuff, it worked as expected. I think you could be on to something.

You can see the 'fix' for the slides towards the bottom of: http://fedoraproject.org/static/css/ie7.css

Sijis