User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the HTML and CSS section within the Web Development category of DaniWeb, a massive community of 427,859 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,628 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our HTML and CSS advertiser: Lunarpages Web Hosting
Views: 2759 | Replies: 8
Reply
Join Date: Jan 2004
Location: Indiana
Posts: 179
Reputation: gortonsfi is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 3
gortonsfi's Avatar
gortonsfi gortonsfi is offline Offline
Junior Poster

Displayed Text in MS Internet Explorer

  #1  
Jul 25th, 2004
Ok, so I've just spent a couple hours getting my site set up the way(in my limited abilities) I want it. I'm ok with the layout, and I set all the fonts for the text. I did this using an Apple, but in Windows IE makes all the text look junky.

Are there certain fonts that Windows can handle better than others?

Thanks,

Jeff
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Nov 2003
Location: California
Posts: 203
Reputation: rixius is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 1
rixius rixius is offline Offline
Posting Whiz in Training

Re: Displayed Text in MS Internet Explorer

  #2  
Jul 25th, 2004
Try using fonts that both OS's use commonly... first pick for alot of websites is Verdana. I personally use this CSS tag for my fonts:

body { font-family: Verdana, Arial, Georgia; }
Reply With Quote  
Join Date: Feb 2004
Posts: 54
Reputation: alihamilton is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 0
alihamilton alihamilton is offline Offline
Junior Poster in Training

Re: Displayed Text in MS Internet Explorer

  #3  
Jul 25th, 2004
Yes, you should use traditional web design fonts....others will read differently on other OS's. You can always develop an image if you want to use a particular font that is not one of the acceptable ones. Only thing with that is that the search engines will not pick up the text if it is in the form of an image.
Reply With Quote  
Join Date: Jul 2004
Location: Wales
Posts: 735
Reputation: DaveSW is on a distinguished road 
Rep Power: 6
Solved Threads: 17
DaveSW's Avatar
DaveSW DaveSW is offline Offline
Master Poster

Re: Displayed Text in MS Internet Explorer

  #4  
Jul 26th, 2004
Originally Posted by rixius
Try using fonts that both OS's use commonly... first pick for alot of websites is Verdana. I personally use this CSS tag for my fonts:

body { font-family: Verdana, Arial, Georgia; }

You should also specify a generic alternative in case the computer doesn't have the fonts you've specified:

body { font-family: Verdana, Arial, Georgia, sans-serif; }
Reply With Quote  
Join Date: Jan 2004
Location: Indiana
Posts: 179
Reputation: gortonsfi is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 3
gortonsfi's Avatar
gortonsfi gortonsfi is offline Offline
Junior Poster

Solution Re: Displayed Text in MS Internet Explorer

  #5  
Aug 1st, 2004
Thanks, Verdana does seem to look better than the fonts I want to use. It isn't whether Windows comes preloaded with them, it's how good or bad they look when the page loads. On my mac there's Quartz. So OS X anti-asliases text so much better than Windows. But with Verdana as the first font choice, the problem is now solv...er..tolerated :-P

Thanks guys,

jeff
Reply With Quote  
Join Date: Apr 2004
Location: Tracy
Posts: 744
Reputation: Killer_Typo will become famous soon enough Killer_Typo will become famous soon enough 
Rep Power: 7
Solved Threads: 32
Killer_Typo's Avatar
Killer_Typo Killer_Typo is offline Offline
Master Poster

Re: Displayed Text in MS Internet Explorer

  #6  
Aug 1st, 2004
gortonsfi, write a CSS sheet for them, then using java have it first find the os of the computer and if OS == Apple/Macintosh then use CSS sheet so and so else OS == Windows use CSS sheet so and so. this will allow users on different platforms to view your site and get the most out of it that they can. i dont know enough java to give you the specifics, but im sure someone in the java section can more easily point you in the right direction.
!!!!! WARNING YOUR COMPUTER MAY BE INFECTED WITH SPYWARE!!!! PAY AN OVER PRICED AMMOUNT TO HAVE SOMTHING FIXED WE PLACED THERE IN THE FIRST PLACE!!!!!!!!!

sound familiar, know how to block yourself and keep yourself clean.
_____________________
http://www.lavasoftusa.com/ -->adaware
http://www.safer-networking.org/en/index.html -->spybot S&D
http://www.javacoolsoftware.com/spywareblaster.html -->spywareblaster
http://www.javacoolsoftware.com/spywareguard.html -->spywareguard
_____________________
and dont forget to spread the reputation to those that deserve!
Reply With Quote  
Join Date: Jul 2004
Location: Wales
Posts: 735
Reputation: DaveSW is on a distinguished road 
Rep Power: 6
Solved Threads: 17
DaveSW's Avatar
DaveSW DaveSW is offline Offline
Master Poster

Re: Displayed Text in MS Internet Explorer

  #7  
Aug 2nd, 2004
I can't find quartz on my computer so I'm guessing windows doesn't have it at all. Therefore you could do this the easy way:

body { font-family: Quartz, Verdana, Arial, Georgia, sans-serif; }

This looks first to see if there's a font called quartz on the computer. If yes, it uses it. If no, it tries for verdana. and so on.

The only risk with this technique is that someone might have installed a windows font of the same name, which might not be clear and easy to read. Having googled it, the only quartz fonts I can find are lcd style ones. e.g.

http://www.fontfinder.ws/19137/Quartz.html

If that is the font you want (and I don't think it is somehow!) you could put LCD on as the second alternative. If not then consider Killer_typo's route just in case. Ofcourse, you're not talking about many people who would have downloaded that font, but to be on the safe side...

Regards
Dave
Reply With Quote  
Join Date: Jan 2004
Location: Indiana
Posts: 179
Reputation: gortonsfi is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 3
gortonsfi's Avatar
gortonsfi gortonsfi is offline Offline
Junior Poster

Re: Displayed Text in MS Internet Explorer

  #8  
Aug 2nd, 2004
I'm satisfied using Verdana now, but thanks.

FYI Quartz isn't a font it's this: http://www.apple.com/macosx/features/quartz/

It's what makes everything in OS X look so darn good.
Reply With Quote  
Join Date: Jul 2004
Location: Wales
Posts: 735
Reputation: DaveSW is on a distinguished road 
Rep Power: 6
Solved Threads: 17
DaveSW's Avatar
DaveSW DaveSW is offline Offline
Master Poster

Re: Displayed Text in MS Internet Explorer

  #9  
Aug 7th, 2004
Ah I see. I really will have to get round to buying one sometime...
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

DaniWeb HTML and CSS Marketplace
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes

Similar Threads
Other Threads in the HTML and CSS Forum

All times are GMT -4. The time now is 3:37 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC