my font changes on a different pc

by 4 replies
5
I noticed that when I viewed my squeeze page on a different computer, the font isn't the same as the original one I used, which makes it look rubbish. Do you know why is that or how I can fix this?

thanks

The Secrets Of Advertising Your Blog
#main internet marketing discussion forum #font
  • If you use a font that is not installed (websafe fonts), then the browser will substitute a default font. There are only a few ways around this issue, use graphics for your fonts, use standard fonts (do a google search for web safe fonts) or use sifr (google it for details).
    • [ 1 ] Thanks
  • Check your browser to see if it's set to use specific fonts.

    Check your site from several other computers to identify which one changes fonts.

    Check your site to see if you've used an odd font that isn't on most computers. If so, use a more popular font.
  • What the people above have said is pretty much right.

    One way of having some amount of control is to have a font hierarchy in your css e.g. "Arial, Helvetica, sans-serif" as the values for your font-family property.
    • [1] reply
    • Bear in mind that fonts are not embedded in HTML documents - they HTML code simply refers to fonts that may or may not be on the machine.

      And if they're not, as others have said, the browser will substitute something else.

      Also, remember that even a font such as "Arial" which is available on every Windows machine is not available on Mac or Linux machines.

      Hence the need to use:

      font-family: Arial,Helvetic,sans-serif

      ...to cover all the bases as Christian said.

      Welcome to the wonderful world of HTML.

      Cheers,

      Neil
      • [ 2 ] Thanks

Next Topics on Trending Feed

  • 5

    I noticed that when I viewed my squeeze page on a different computer, the font isn't the same as the original one I used, which makes it look rubbish. Do you know why is that or how I can fix this? thanks