Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

I run firefox on three computers and on this one my website font is not correct. All of my boxes are set up the same. Please advise.

  • 9 replies
  • 1 has this problem
  • 3 views
  • Last reply by cor-el

more options

As I mentioned above I have three pc's all running win7 and firefox 6.02. On this box website fonts are different than the others. All of the "option" settings are identical on all of the boxes. Including "allow pages to choose their own fonts". I uninstalled 6.02 and installed 5.0 but there was no difference. So I reset to 6.02. The pages look fine in IE.

Please advise.
As I mentioned above I have three pc's all running win7 and firefox 6.02. On this box website fonts are different than the others. All of the "option" settings are identical on all of the boxes. Including "allow pages to choose their own fonts". I uninstalled 6.02 and installed 5.0 but there was no difference. So I reset to 6.02. The pages look fine in IE. Please advise.

All Replies (9)

more options

What is the difference?
Does it happen on all websites?


Can you attach some screenshots for comparison?

Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).

more options

Here are four screen shots from two different pc's. IE1, FF1, IE2, FF2 using Win7. All boxes use FF 6.02 As you can see FF1 has Times New Roman font, while the others have the correct Ariel Narrow. All boxes have the same settings. "allow pages to choose their own fonts" Please advise. thx

more options

You probably need to adjust the CSS settings to make Firefox use the Arial Narrow font by adding font-stretch: condensed (bug 644385).


TEXT
{ font-family: Arial Narrow, Arial, sans-serif; font-stretch: condensed }
more options

Where are the CSS settings in FF 6.02?

Thanks

more options

That change needs to be made to the CSS file that is on the web server.

So if you use a CSS file or have the CSS code in the main HTML file then add font-stretch: condensed; to all CSS rules that have a font-family: "Arial Narrow";

If you do not have access to the page code and can't modify it then there is not much that you can do.


A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
The helpers at that forum are more knowledgeable about web development issues.
You need to register at the mozillaZine forum site in order to post at that forum.

See http://forums.mozillazine.org/viewforum.php?f=25

Modified by cor-el

more options

Ok, thanks. I went to two cyber cafes and tested it on other machines using FF. The website looks fine on everyone except my box. So there is some setting in FF 6.02 that is causing this.

more options

Are those other computers running Windows 7?

It probably only happens on Windows 7.

See:

more options

Good question. No, they were running XP. So this is a compatibility issue between Win 7 and FF?

more options

On Windows 7 the Arial fonts are placed in one group and you need to use a specific font rule to select the right font.
For Arial Narrow that is font-stretch: condensed;
Arial Black needs font-weight: 900;


  • bug 644385 – Arial Narrow, Arial Black fonts do not show on page (comment 8)

Modified by cor-el