Web Design and Development Forums

[SOLVED] The font problem

This is a discussion on "[SOLVED] The font problem" within the Accessibility and Usability section. This forum, and the thread "[SOLVED] The font problem are both part of the Plan Your Website category.

Old Sep 25th, 2007, 21:35   #1 (permalink)
New Member
 
Join Date: Aug 2007
Location: England
Age: 18
Posts: 6
[SOLVED] The font problem

Hello there,

I came across with a problem - some users (particulary that don't have "Lucida Sans" in their "Fonts" folder) can't view my page properly. The design goes slightly down because of that.

I'm wondering is there a way to solve that problem (like integrating the font into the CSS or something) or I should go for an alternative ("Georgia", "Geneva")?

Thanks.
predatoruk90 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old Sep 25th, 2007, 21:38   #2 (permalink)
 
JacobHaug's Avatar
 
Join Date: Dec 2005
Location: On Internet
Posts: 5,550
Send a message via AIM to JacobHaug Send a message via MSN to JacobHaug
Re: The font problem

You should go for an alternate font. Do you know how to accomplish this in CSS? If not, I can give you the code to use. As far as I know you can not have the font embedded using XHTML/CSS. You can do this with flash however.
__________________
JacobHaug.com - My Portfolio
JacobHaug is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old Sep 25th, 2007, 22:05   #3 (permalink)
Administrator
 
alexgeek's Avatar
 
Join Date: Jul 2007
Location: Webforumz 24/7
Age: 15
Posts: 4,102
Blog Entries: 9
Send a message via MSN to alexgeek
Re: The font problem

Are you allowed to offer a download of the font so that people can view it properly?
or is that illegal?
I know it's not very practical
__________________
Languages: PHP, mySQL (queries), C#, (X)html, CSS, JS.


alexgeek is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old Sep 25th, 2007, 22:08   #4 (permalink)
Moderator
 
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,157
Re: The font problem

Quote:
Originally Posted by predatoruk90 View Post
I'm wondering is there a way to solve that problem (like integrating the font into the CSS or something) or I should go for an alternative ("Georgia", "Geneva")?
You can't embed fonts into CSS. The solution is simple: specify fall-back fonts:

Code: Select all
font-family: "Lucida Sans", Verdana, sans-serif;
This indicates your font preference. You can list as many as you want, but you should always end with the generic fall-back "sans-serif" or "serif".
MikeHopley is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old Sep 26th, 2007, 08:29   #5 (permalink)
New Member
 
Join Date: Aug 2007
Location: England
Age: 18
Posts: 6
Re: The font problem

Thanks for your replies.

Ok then, I'll do as you say - list the alternative fonts (frankly speaking I didn't know what that set of fonts did untill now, thanks). What do you think will be the best alternative for Lucida Sans:

font-family: "Lucida Sans", "Geneva", "Georgia", "Verdana", sans-serif;

You say it's possible to use flash to help me - how does it work, is it difficult to do?

Thanks in advance.
predatoruk90 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old Sep 26th, 2007, 09:08   #6 (permalink)
Section Manager -
Website Critique
 
welshstew's Avatar
 
Join Date: May 2007
Location: inside the outside
Posts: 1,094
Blog Entries: 10
Re: The font problem

Quote:
Originally Posted by predatoruk90 View Post
You say it's possible to use flash to help me - how does it work, is it difficult to do?
You can also do this using ASP, using a constants file and a few funcky functions.........

actually, scrap that. The idea I had would have spit out an image, perfect for producing headings etc, but wouldn't work for main text in your site.

Ignore me
__________________
WelshStew
Section Manager

tierney rides tboard - uk site : xtreme wales - extreme clothing
welshstew is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old Sep 26th, 2007, 09:50   #7 (permalink)
Moderator
 
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,157
Re: The font problem

Quote:
Originally Posted by predatoruk90 View Post
font-family: "Lucida Sans", "Geneva", "Georgia", "Verdana", sans-serif;
Leave out Georgia, because it's a serif font (the others are sans-serif).
MikeHopley is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old Sep 26th, 2007, 13:16   #8 (permalink)
New Member
 
Join Date: Aug 2007
Location: England
Age: 18
Posts: 6
Re: The font problem

Ok, then:

font-family: "Lucida Sans", Geneva, Verdana, sans-serif;

That should do - thank you all for your help.
predatoruk90 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old Sep 27th, 2007, 08:58   #9 (permalink)
drd
 
Join Date: Dec 2005
Location: Hampshire, England, UK
Age: 28
Posts: 62
Re: The font problem

For headings, have a look at http://en.wikipedia.org/wiki/Scalabl...sh_Replacement
__________________
Cheers, Dave
www.davereederdesign.com
drd is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old Sep 27th, 2007, 13:01   #10 (permalink)
Elite Veteran
 
karinne's Avatar
 
Join Date: Jan 2007
Location: You know where
Age: 30
Posts: 4,883
Re: The font problem

Quote:
Originally Posted by drd View Post
Or you can head on over to the FAQ section of our newsletter
__________________
a web design portfolio | web non-sense
karinne is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old Sep 28th, 2007, 16:11   #11 (permalink)
New Member
 
Join Date: Aug 2007
Location: England
Age: 18
Posts: 6
Re: The font problem

Thx
predatoruk90 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Closed Thread

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Ideal Font / Size? sing2trees HTML Forum 12 Dec 28th, 2007 09:50
Font Problem In My Css Coding balaji CSS Forum 1 Jul 2nd, 2007 11:59
body font size problem samv CSS Forum 6 Feb 21st, 2007 11:55
side link tabs font size problem paul1234 New to Web Design 2 Jan 11th, 2007 19:55
css font sizes problem jesse22 CSS Forum 7 Oct 23rd, 2006 18:04



Latest Updates

All Points SEO Security Advisory - CHECK YOUR SITE NOW!

Creative Coding :: February 2008

Webforumz is sponsored by: WESH UK Web Hosting
All times are GMT. The time now is 16:25.

Sleep Study Scoring :: Free Bet :: Website Templates :: Online Betting :: Bookmakers :: Funny Quotes :: Internet Recruitment Software :: Microsoft CRM Experts :: Online Casino :: Decorated Christmas Trees :: Midwife Forums :: Football Betting :: Ecommerce Software :: Web Hosting :: Football Stats :: Dry Cleaning Collection :: xtreme wales - extreme clothing :: Apuestas :: Sharepoint Consultants :: Website Optimisation :: Office Clearance London :: Sharepoint Experts :: Sports Betting :: Casino :: Website Templates :: Web Design Development India :: Online Gambling

Powered by: vBulletin Version 3.7, Copyright ©2000 - 2008, Jelsoft Enterprises Limited.
© 2003-2008 Webforumz.com : All Rights Reserved
Search Engine Friendly URLs by vBSEO 3.2.0 RC6


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59