Works great everywhere but IE 6 and IE 7, any help?
+1
A:
I believe the error is in your sifr-config.js:
sIFR.replace(nfslab, {
selector: '#home h3.about,#ourapproach h3.about,#contactus h3.about, #mobile h3.about, #web h3.about, #affiliate h3.about, #environments h3.about, #branding h3.about, #packaging h3.about, #pop h3.about, #print h3.about',
wmode: 'transparent',
css: [
'.sIFR-root { background-color: #FFFFFF; color: #000000; font-size: 16px; text-decoration: none; cursor: pointer; }',
'a {color: #000000; text-decoration: none;}',
'a:hover {color: #6BC8C6; text-decoration: none;}'
],
});
the trailing comma in the list is graciously ignored by Firefox, but not by IE. This screws up the siFR initialization process. I think IE is correct to fail here. You will need to remove all extra commas in all definitions.
Pekka
2009-12-09 01:46:11
Which comma are you talking about? I tried to remove some with no good results. Any help?
Chase
2009-12-10 00:50:05
The last comma: `],`
Pekka
2009-12-10 10:42:58
woohoo! Thank you very much Pekka! You were right, and it nows works properly in both IE6 and IE7. Good day sir!
Chase
2009-12-10 17:30:48
Good stuff! You can mark the answer as accepted by clicking its "check" sign.
Pekka
2009-12-10 17:47:57
@Pekka - +1 Thanks It worked for me also.
metal-gear-solid
2010-10-12 04:39:02