Forum Moderators: not2easy

Message Too Old, No Replies

CSS Mac Issue

fonts vary on safari

         

kiwidesign

3:54 am on Jun 30, 2005 (gmt 0)

10+ Year Member



Hi,

I have recently created a website which uses a style sheet to define fonts.

The font used is Times New Roman (clients choice)
On all the PC browsers it displays fine but on
Safari (MAC) it shows as a serif font rather than a sans serif font.

Any ideas on why and how to fix this problem as
the clients want it to look the same across both platforms.

Krapulator

4:10 am on Jun 30, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Times New Roman is a serif font.

You can use a font-family to specify various fonts:

body *{
font-family: Roman,"Times New Roman", serif;
}

tedster

5:40 am on Jun 30, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



the clients want it to look the same across both platforms.

I think it's time for some client education - this is not print, it's the web and rendering cannot be so tightly controlled. The only way to achieve the exact same look cross-platform is to use images instead of fonts -- and then the search engine spiders can't see the text, so your sunk.

It's just a fact that different platforms (and even different machines running the same platform) have different sets of fonts available.

When it comes to serif fonts, Georgia is quite widely distributed on the Macintosh platform. In fact, I've had very nice cross-browser results with a serif font list that completely ignores TNR:

font-family:Georgia,Book Antiqua,Palatino,serif;

One reason that group works out nicely is that for quite a few years there has been a Windows version of Georgia installed on new PCs.

kiwidesign

3:10 am on Jul 1, 2005 (gmt 0)

10+ Year Member



Thanks heaps for your help. That font family looks great and the client is happy. Thanks again.