vote up 0 vote down star

Howdy,

my website http://tweetMP.org.au uses SIFR to render the flash font h2 headings.

If you compare the site between Firefox and IE7/8 you'll notice the headings are noticably smaller in IE (7 and 8 only - IE6 looks fine).

Adjusting the font-size on my ie(7 and 8 specific css) does nothing.

Any ideas why this is the case?

-V

flag

78% accept rate
If you disable sIFR, the font size is also smaller? – Mark Wubben May 16 at 21:07
I will try this Mark – CVertex May 17 at 0:38
Mark, it is not smaller. IE7 and 8 display the same font-size as firefox when I disable siFR – CVertex May 17 at 6:35
Okay. In that case, this clearly shouldn't be happening… could you create a test case with just one headline and as little CSS as possible? Will be easier to diagnose. – Mark Wubben May 18 at 21:42
Sure, i'll create this for you tonight – CVertex May 19 at 2:00

2 Answers

vote up 0 vote down

I would recommend setting the font size within the sifr config file, something similar to this: (make note of the font-size element). This insures that the font size is carried out within the sifr and might help you out. if it doesn't let me know there's one more solution i can think of :)

sIFR.replace({
selector: '.din-20-bold',
src: 'fonts/din.swf',
highsrc: 'fonts/din.swf',
css: {
'.sIFR-root' : { 'text-transform': 'uppercase' , 'color':'#FFFFFF', 'text-align':'right', 'width':'484px', 'font-size':'20px', 'font-weight':'bold'},
},
wmode: 'transparent',
paddingTop: 0
});

link|flag
vote up 0 vote down

Your problem might be from using pixels (px) for the font size. Although ems (em) are the modern way to size fonts, percentages (%) display more consistently across browsers. Try that, and test the sIFR again. For more info, read the articles below, one of which (on A List Apart) quotes:

A fix to the exaggerated text resizing of IE6 and IE7 is to size the body using a percentage

CSS Font-Size: em vs. px vs. pt vs. percent

How to Size Text in CSS

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.