I have set up sIFR on a site and it is working correctly. However I need to be able to apply multiple styles based on class.
The functioning code is:
sIFR.replace(myriadpro, {
selector: 'h2',
css: '.sIFR-root { font-size: 20px; color: #008cba; text-transform: capitalize; }',
wmode: 'transparent'
});
However, I need to be able style h2.white with a different font color. I just need to know how to add another selector.
Thanks in advance for the help.