sIFR 3 r 436 not displaying in IE7
I am new to sIFR and I am unable to get the fonts to display properly in IE7. I get an "Expected Identifier, String or Number" error, which I do开发者_JS百科n't know how to troubleshoot.
Here is my dev link: http://paradigm-aero.bigrigmedia.com/test.html
Any insight would be greatly appreciated!!!
You have (at least one) a comma before the closing curly brace:
sIFR.replace(centurygothic, {
selector: '.century12',
css: [ '.sIFR-root { color: #666666; leading: 1; letter-spacing: 1; text-transform: uppercase; }' ,'a { text-decoration: none }' ,'a:link { color: #112343 }' ,'a:hover { color: #E31824 }' ], wmode: 'transparent', preventWrap: true,
forceWidth: true,
fitExactly: true,
forceSingleLine: true,
});
This causes a syntax error in IE.
精彩评论