If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Bad Astronomy and Universe Today Forum > General > About BAUT
Register FAQ Members List Calendar Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-May-2008, 10:10 AM
Jeff Root Jeff Root is offline
Senior Member
 
Join Date: Dec 2004
Location: Minneapolis
Posts: 3,345
Default 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/

"The other planets?
Well, they just happen to be there, but the point of rockets is to explore them!"
-- Kai Yeves
Reply With Quote
  #2 (permalink)  
Old 07-May-2008, 10:58 AM
geonuc's Avatar
geonuc geonuc is online now
Senior Member
 
Join Date: Dec 2007
Location: Atlanta
Posts: 916
Default

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.
Reply With Quote
  #3 (permalink)  
Old 07-May-2008, 11:55 AM
Jeff Root Jeff Root is offline
Senior Member
 
Join Date: Dec 2004
Location: Minneapolis
Posts: 3,345
Default

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/

"The other planets?
Well, they just happen to be there, but the point of rockets is to explore them!"
-- Kai Yeves
Reply With Quote
  #4 (permalink)  
Old 07-May-2008, 12:09 PM
geonuc's Avatar
geonuc geonuc is online now
Senior Member
 
Join Date: Dec 2007
Location: Atlanta
Posts: 916
Default

Sorry, misunderstood. I'm ignorant of such matters.
Reply With Quote
  #5 (permalink)  
Old 07-May-2008, 02:07 PM
Nick Theodorakis Nick Theodorakis is offline
Senior Member
 
Join Date: Oct 2007
Posts: 242
Default

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
__________________
Nick Theodorakis
Reply With Quote
  #6 (permalink)  
Old 07-May-2008, 02:13 PM
NEOWatcher's Avatar
NEOWatcher NEOWatcher is online now
Senior Member
 
Join Date: May 2005
Location: the E(e)rie coast
Posts: 6,712
Default

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.
__________________
Numbers are not case sensitive. (me)
Reply With Quote
  #7 (permalink)  
Old 07-May-2008, 04:23 PM
Fazor's Avatar
Fazor Fazor is offline
Senior Member
 
Join Date: Oct 2006
Location: Near Columbus, Ohio
Posts: 3,873
Default

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.
__________________
I'm like one of those idiot savants...well, except for the savant part.

"A long time ago, yet somehow in the future"
Reply With Quote
  #8 (permalink)  
Old 07-May-2008, 05:10 PM
Nick Theodorakis Nick Theodorakis is offline
Senior Member
 
Join Date: Oct 2007
Posts: 242
Default

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
__________________
Nick Theodorakis
Reply With Quote
  #9 (permalink)  
Old 07-May-2008, 08:26 PM
HenrikOlsen's Avatar
HenrikOlsen HenrikOlsen is offline
Moderator
 
Join Date: Sep 2003
Location: Denmark 55.6773° N 12.3610° E
Posts: 4,471
Send a message via MSN to HenrikOlsen Send a message via Yahoo to HenrikOlsen
Default

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").
__________________
An emperor without enemies, a king without a kingdom, supported in life by the willing tribute of a free people.
Cincinnati Enquirer headline about Emperor Norton I
Reply With Quote
  #10 (permalink)  
Old 07-May-2008, 08:36 PM
Nick Theodorakis Nick Theodorakis is offline
Senior Member
 
Join Date: Oct 2007
Posts: 242
Default

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
__________________
Nick Theodorakis
Reply With Quote
  #11 (permalink)  
Old 17-May-2008, 03:38 PM
Vanamonde's Avatar
Vanamonde Vanamonde is offline
Senior Member
 
Join Date: Mar 2008
Location: Austin, Earth
Posts: 180
Default

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.
__________________
I came for the astronomy but I do love the physics!
Reply With Quote
Reply


Thread Tools
Display Modes

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

vB 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
NASA cuts astronauts down to size 01101001 Space Exploration 42 14-May-2007 02:34 PM
If a meteroite (Do I have the right term?) the size of Texas.. Big Bad Boo Questions and Answers 10 02-December-2006 04:30 AM
Am I closer in size to a photon or the universe phonicboom Questions and Answers 38 24-October-2005 11:29 PM
When Did Motion First Start ? br dan izzo Astronomy 3 17-April-2005 09:20 PM
Cyclical Universe Platinum Rhymer Astronomy 75 18-October-2004 06:35 PM


All times are GMT. The time now is 12:35 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
©  2006 Bad Astronomy and Universe Today