hi,
i'm after a way to remove the outline focus that firefox applies to my page: http://www.bevelite.com.au/test
i've read that applying the following will fix this but can't seem to apply it to my code:
sIFR.replace(movie, {fixFocus: true});
my code:
sIFR.replace(univers47cl, {
selector: 'h1.test',
wmode: 'transparent',
css: [
'.sIFR-root { font-size: 20px; font-weight: 100; color: #000000; text-transform: uppercase; line-height: 20px; margin: 0 0 15px 0; padding: 0; }',
'a { text-decoration: none; }',
'a:link { color: #000000; text-decoration: none; }',
'a:hover { color: #000000; text-decoration: underline; }',
]
});
sIFR.replace(univers47cl, {
selector: 'h1',
wmode: 'transparent',
css: [
'.sIFR-root { font-size: 20px; font-weight: 100; color: #00b9f2; text-transform: uppercase; line-height: 20px; margin: 0 0 15px 0; padding: 0; }',
'a { text-decoration: none; }',
'a:link { color: #00b9f2; text-decoration: none; }',
'a:hover { color: #00b9f2; text-decoration: underline; }',
]
});
can anyone see where i could apply this to me code?
(sIRF documentation here > http://wiki.novemberborn.net/sifr3/)