Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: Chalky on March 04, 2012, 07:35:51 AM

Title: News Fader not working in IE
Post by: Chalky on March 04, 2012, 07:35:51 AM
In IE9, my news items just show in a static list rather than as a fader.  Is there anything I can do about this?
Title: Re: News Fader not working in IE
Post by: Illori on March 04, 2012, 07:51:58 AM
http://www.simplemachines.org/community/index.php?topic=357498.msg2667372#msg2667372

and
Quote from: Arantor on March 18, 2011, 08:16:50 PM
Edit your theme's CSS.

It even notes the problem in there!

#smfFadeScroller
{
    text-align: center;
    padding: 0 2em;
    overflow: auto;
    margin: 1em 0;
    color: #fff; /* shouldn't be shorthand style due to a JS bug in IE! */
}


Convert it into:

#smfFadeScroller
{
    text-align: center;
    padding: 0 2em;
    overflow: auto;
    margin: 1em 0;
    color: #ffffff; /* shouldn't be shorthand style due to a JS bug in IE! */
    background-color: black;
}

Title: Re: News Fader not working in IE
Post by: Chalky on March 04, 2012, 08:06:47 AM
Thanks, I had searched first honest  :-[

Although that doesn't actually seem to help, as my .css already looks like this:

#smfFadeScroller
{
   text-align: center;
   padding: 0 2em;
   overflow: auto;
   margin: 1em 0;
   color: #575757; /* shouldn't be shorthand style due to a JS bug in IE! */
}


I've tried adding the background line as in the example just in case, but nothing - still static  :(
Title: Re: News Fader not working in IE
Post by: Illori on March 04, 2012, 08:08:45 AM
link to your forum?
Title: Re: News Fader not working in IE
Post by: Chalky on March 04, 2012, 08:33:11 AM
Thank you for your help :)  We're a closed forum so I've set you up with a temporary login with limited access (my members are of a nervous disposition :D)
Title: Re: News Fader not working in IE
Post by: Illori on March 04, 2012, 09:27:39 AM
in what way does the news fader not work? i dont see that you have more then one news entry for it to rotate.
Title: Re: News Fader not working in IE
Post by: Chalky on March 04, 2012, 09:30:05 AM
I have three news entries.  On Chrome and Firefox, they rotate, but on IE they all show at the same time as a static list of three items. 
Title: Re: News Fader not working in IE
Post by: Illori on March 04, 2012, 09:31:56 AM
does it work correctly on the default theme? if so post in your themes support thread
Title: Re: News Fader not working in IE
Post by: Chalky on March 04, 2012, 09:39:06 AM
Oh, I hadn't thought of that....  Yes it works fine in the default theme!

Thanks Illori, I'm off to the Actualism thread :)