Results 1 to 11 of 11

Thread: Font size

  1. #1
    Join Date
    Dec 2004
    Posts
    11,264

    Font size

    I'm asking this question to help me design my own web pages.

    BAUT sets the font size to something smaller than the browser's
    default "medium" size. Google search results and Google Groups,
    among many others, also use a font size smaller than the browser
    default. I have no problem with that, but can anyone explain
    why it is done, and why I haven't seen any complaints about it
    from the HTML police? They always said to let the user decide
    what font size to use. I'm wondering: If BAUT and Google can
    get away with controlling the font size, why shouldn't I do the
    same on my own pages?

    I don't want to control it as tightly as BAUT does, though:
    BAUT doesn't let users change the size of most text at all!
    Why? I would simply change the base size, and the user could
    still adjust the actual displayed size as needed.

    -- Jeff, in Minneapolis
    http://www.FreeMars.org/jeff/

    "I find astronomy very interesting, but I wouldn't if I thought we
    were just going to sit here and look." -- "Van Rijn"

    "The other planets? Well, they just happen to be there, but the
    point of rockets is to explore them!" -- Kai Yeves

  2. #2
    Join Date
    Dec 2007
    Posts
    5,083
    I wasn't aware of the website controls over font size. But have you been to forums where users select their own font? It's a screaming mess.

  3. #3
    Join Date
    Dec 2004
    Posts
    11,264
    geonuc,

    By "user" I mean a person reading an HTML page, not a poster. Posters on
    BAUT can change the font size of text within their posts. That's not what
    I'm asking about.

    -- Jeff, in Minneapolis
    http://www.FreeMars.org/jeff/

    "I find astronomy very interesting, but I wouldn't if I thought we
    were just going to sit here and look." -- "Van Rijn"

    "The other planets? Well, they just happen to be there, but the
    point of rockets is to explore them!" -- Kai Yeves

  4. #4
    Join Date
    Dec 2007
    Posts
    5,083
    Sorry, misunderstood. I'm ignorant of such matters.

  5. #5
    Quote Originally Posted by Jeff Root View Post
    I'm asking this question to help me design my own web pages.

    BAUT sets the font size to something smaller than the browser's
    default "medium" size. Google search results and Google Groups,
    among many others, also use a font size smaller than the browser
    default. I have no problem with that, but can anyone explain
    why it is done, and why I haven't seen any complaints about it
    from the HTML police? They always said to let the user decide
    what font size to use. I'm wondering: If BAUT and Google can
    get away with controlling the font size, why shouldn't I do the
    same on my own pages?

    I don't want to control it as tightly as BAUT does, though:
    BAUT doesn't let users change the size of most text at all!
    Why? I would simply change the base size, and the user could
    still adjust the actual displayed size as needed.

    -- Jeff, in Minneapolis
    First of all, the BAUT forum uses "canned" board software called vbulletin that is also used by many other forums, and they all look pretty similar, so I suspect that admins don't have a lot of control over the user interface.

    Your instincts are correct in that the user ought to have some control over the web page appearance, especially for font sizes. I don't know which HTML police you drink coffee with, but the ones on some of the web authoring usenet groups are quite vocal on this point.

    I haven't looked at code for vbulletin, so I suspect that the text is sized in px units, which makes it difficult for IE users to resize the text. Some people would consider this a serious accessibility problem. Fortunately, Firefox and Opera (and probably some others) do allow users to resize text no matter how the size is specified. Moreover, Firefox (at least) also allows the user to specify a minimum font size.

    If you want all users (including IE users) to have control, don't use px units but rather em or % units to suggest size. Many people (including myself) also recommend using the default (1 em or 100%, or even not specifying it at all) for the main body text.

    Nick

  6. #6
    Join Date
    May 2005
    Location
    N.E.Ohio
    Posts
    16,837
    Quote Originally Posted by Jeff Root View Post
    I have no problem with that, but can anyone explain why it is done, and why I haven't seen any complaints about it
    from the HTML police? They always said to let the user decide
    what font size to use. I'm wondering: If BAUT and Google can
    get away with controlling the font size, why shouldn't I do the
    same on my own pages?
    It's all a matter of looks.

    If you can get your page to look acceptable for a variety of browser settings, then, by all means, go for it.

    But; the reality of the situation is:
    Most users have accept the default settings, so most people wouldn't notice.
    Testing the different visualizations tends to get laborious.
    It is always easier to design for a single look and layout.
    Since most of the world controls thier look, then the HTML police would be too busy to even notice yours.

  7. #7
    Join Date
    Oct 2006
    Posts
    11,965
    At least with IE, you can hold Ctrl + MWheel Up/Down to zoom/shrink the page. When I design a website, I don't want the user to be able to change the font size because doing so also changes the page layout, which bugs me. I design the page to look a certian way--I don't like people changing that, but perhaps that's just the artist in me. I haven't designed a webpage in ages... maybe I'll go update my personal website when I get home.

  8. #8
    Quote Originally Posted by Fazor View Post
    At least with IE, you can hold Ctrl + MWheel Up/Down to zoom/shrink the page. When I design a website, I don't want the user to be able to change the font size because doing so also changes the page layout, which bugs me. I design the page to look a certian way--I don't like people changing that, but perhaps that's just the artist in me. I haven't designed a webpage in ages... maybe I'll go update my personal website when I get home.
    It would really bug you to see me websurfing, then (at least at home, where I have my browser tweaked). I use Firefox with a bunch of addons. I have a minimum font size set. If I don't like the color or contrast of the text, I hit the "zap colors" bookmarklet. If I still don't like it, I hit "zap stylesheets." If I think an image is too small, I use the Image Zoom extension to make it bigger (which is really great for reading comics inline).

    I think you should think less about a webpage as a fixed, static piece of art such as a painting or sculpture, but rather one that is filtered through the interaction or interpretation of another person, such as a symphony or a play.

    Nick

  9. #9
    I expect one reason why the html police isn't going after the font size is that it isn't set in px, but in pt, so the browser scales the font differently depending on the screen's dpi.

    Setting the font size in em's sounds utterly ludicrous to me, as the em is a unit sized relative to the current font size (normally the width of a lowercase "m").
    __________________________________________________
    Reductionist and proud of it.

    Being ignorant is not so much a shame, as being unwilling to learn. Benjamin Franklin
    Chase after the truth like all hell and you'll free yourself, even though you never touch its coat tails. Clarence Darrow
    A person who won't read has no advantage over one who can't read. Mark Twain

  10. #10
    Quote Originally Posted by HenrikOlsen View Post
    ....

    Setting the font size in em's sounds utterly ludicrous to me, as the em is a unit sized relative to the current font size
    ...
    I would consider that a plus, not a minus. Why not scale font sizes in accord with the user's chosen defaults?

    Quote Originally Posted by HenrikOlsen View Post
    ....
    (normally the width of a lowercase "m").
    In CSS, the em is simply the height of the current font.

    Nick

  11. #11
    Join Date
    Mar 2008
    Posts
    199
    Quote Originally Posted by NEOWatcher View Post
    It's all a matter of looks...
    <sigh> if only that was true. This one has fought the battle against bifocals and lost and now is resisting trifocals with all of my might. I wear bifocals when I am out and about and have a different single vision prescription for monitors.

    Firefox's superior user interface (ctrl-+ is my friend!) actually allows me to read many pages without glasses!

    For some reason, SciAm is one of the worst offenders - defaults to microprint, my friend crtl-+ will not work and I have to use their + and the column size is fixed. And their tool ('+') stop when the font is *almost* legible, but then I get about four or five words per line.

    A WEB PAGE IS NOT A MAGAZINE!

    I hate the commerical habit of fixing the column size and in fact I hate more than two columns on a web page, actually. One column like this fine forum where the text fills the screen is ideal.

    Web text must flow.

    Thank you for letting me get that off my chest.

    If only I was young again.

Similar Threads

  1. Badastronomy Tiny Font issue
    By dgavin in forum Forum Introductions and Feedback
    Replies: 10
    Last Post: 2007-Jul-25, 10:57 AM
  2. Draft lettering font.
    By Doodler in forum Off-Topic Babbling
    Replies: 3
    Last Post: 2007-Mar-03, 06:18 AM
  3. A viral font?
    By JohnD in forum Science and Technology
    Replies: 24
    Last Post: 2006-May-30, 09:55 AM
  4. I've broken the <font> habit
    By Glom in forum Off-Topic Babbling
    Replies: 3
    Last Post: 2006-Feb-19, 10:40 AM
  5. font
    By chicolimpet in forum Universe Today
    Replies: 1
    Last Post: 2004-Oct-13, 10:18 AM

Posting Permissions

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