搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

此討論串已經關閉並封存。 如果您有需要幫助,請新增一個新問題

how to call helvetica font in fire fox

  • 4 回覆
  • 2 有這個問題
  • 211 次檢視
  • 最近回覆由 mankaran

more options

Hi, Helvetica font family is not working in fire fox, but its working in chrome very well. So please solve my this problume

Link of that site is

http://max-molly.com/

Regard Mankaran Sran

Hi, Helvetica font family is not working in fire fox, but its working in chrome very well. So please solve my this problume Link of that site is http://max-molly.com/ Regard Mankaran Sran

被選擇的解決方法

Hi mankaran,

In `style.css` of your theme there are multiple instance of: font-family: helveticaneue; As Helvetica Neue is not a standard web-safe font and since it's nomenclature can vary from system to system you may want to use something more like: font-family: "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, sans-serif; When using a non web-safe fonts it is always good to provide suitable alternatives if the font is not available.

Another alternative is to use a webfont (@font-face) to serve up the font.

Hope that helps!

從原來的回覆中察看解決方案 👍 0

所有回覆 (4)

more options

What do you mean by not working? Specifying a font with CSS should work the same way, for example: body {

   font-family: Helvetica, Arial, sans-serif;

}

Your site says, "Error establishing a database connection" right now so I can't see what is happening.

Thanks, Michael

more options

please check my link and open in chrome and fire fox

more options

選擇的解決方法

Hi mankaran,

In `style.css` of your theme there are multiple instance of: font-family: helveticaneue; As Helvetica Neue is not a standard web-safe font and since it's nomenclature can vary from system to system you may want to use something more like: font-family: "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, sans-serif; When using a non web-safe fonts it is always good to provide suitable alternatives if the font is not available.

Another alternative is to use a webfont (@font-face) to serve up the font.

Hope that helps!

由 Rehan Dalal 於 修改