Hello,
I have a simple line of text I'm replacing with sIFR for a header on my site. The site is liquid so it scales when the browser window changes width. But when I shrink the browser window down, the alt text (when I turn it on for testing) wraps to another line, but the sIFR text doesn't.
I've seen written elsewhere on the web that people implement in the sifr.js code a "preventWrap=false" function, but being new to javascript I'm not sure where to put it to make it work.
Any clues to help me fix this dilemma?
Here's the relevant CSS:
.sIFR-hasFlash h2 { visibility: hidden; letter-spacing: 1px; font-size: 18px; text-align: center; line-height: 1.5em; }
and the relevant javascript:
sIFR.replaceElement(named({sSelector: "h2",
sFlashSrc: "flash/h2_font.swf", sBgColor: "#006633", sColor: "#FFFFFF", sFlashVars: "textalign=center", sWmode: "transparent"}));
Not sure where I would put the preventWrap=false, or if that's even the way to go.
Thanks for any help on this!