Search code examples
sifrflash-cs4sifr3

SIFR 3 NOT RENDERING IE7


I am building a site right now using the new siFR3 it works perfectly on FF & Chrome but not on IE7 to view click here


Solution

  • ok I found out what was the problem all it was watch my old code that doesn't work in IE:

        sIFR.replace(officinaWhite, {
      selector: '#boxes h1', wmode: 'transparent',
      css: '.sIFR-root { color:#ffffff; }',
    });
    
    sIFR.replace(officina, {  
      selector: '#content h2, #rightCol2 h2, #rightCol h2', wmode: 'transparent',
      css: '.sIFR-root { color:#000000; }',
    });
    

    and this is the code that fixed it:

        sIFR.replace(officinaWhite, {
      selector: '#boxes h1', wmode: 'transparent',
      css: ['.sIFR-root { color:#ffffff; }']
    });
    
    sIFR.replace(officina, {  
      selector: '#content h2, #rightCol2 h2, #rightCol h2', wmode: 'transparent',
      css: ['.sIFR-root { color:#000000; }']
    });
    

    it is only missing the parenthesis under the css:['.sIFR-root { color:#000000; }'] no commmas in the end.