Results 1 to 6 of 6

Thread: text size opinions

  1. #1
    Join Date
    Nov 2005
    Posts
    132
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default text size opinions

    hi,

    I've worked my way through stacks of useability forums and allsorts on the question of preferred font sizes and am still undecided.

    What is the feeling out there? I'm keen to make my site with w3c approval but also a real useability/aesthetic approval for the majority of users who may have partial sight and other issues.

    Pixels? ems? %?

    I'd value all your thoughts or any pointers to similar discussions.
    Thanks

  2. #2
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Steven Poley has written a good discussion on this topic entitled, The Wrong Size Fonts.

    The guidelines as far as I'm concerned boil down to: only use percentages for continuous media; body text should remain at the default user size (100%); and the smallest text should not be less than 85% of that default.

    For the latter guideline, it's important to remember that percentages are cumulative. For example, consider a footer. You might choose to display its contents slightly smaller, so you apply

    Code:
    #footer {
      font-size: 90%;
    }
    However, say that there's content within that footer that should be even smaller - perhaps a copyright notice. It should be at least 94.5% as 90% * 94.5% = 85.05%.

    Mike

  3. #3
    Join Date
    Nov 2005
    Posts
    132
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    thanks for that

  4. #4
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    In my work as web design I have found that it is easiest to make the "body" of your entire document one font size and then just use percentages of that from there.... everything inside the body will inherit any properties you place in the body tag, thus if you ever want to change the font sizes of your page you only need to change 1 size and the rest will automatically be changed based upon it... Thus I believe it is worth taking the extra 20 - 30 minutes to make everything in % of your initial font size.

  5. #5
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    I have found that it is easiest to make the "body" of your entire document one font size and then just use percentages of that from there...
    If you're suggesting an absolute font size there, that would totally defeat the point of using percentages in the first place.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  6. #6
    Join Date
    Nov 2005
    Posts
    132
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    I can see your point, pissa. (so to speak)
    cheers

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •