[Javascript] Control IE "text size"

Cheryl Kirkpatrick cheryl at leo.scsl.state.sc.us
Tue Sep 24 12:40:03 CDT 2002


Please consider the reason Internet Explorer gives the user
the ability to adjust text size. Some users have vision problems and need to set
text to a size they can see. You are doing a disservice to those users when you
override their preferences. Accessibility of Web sites is a big issue at this time
and the W3C recommends using relative font sizes.

Cheryl Kirkpatrick
Web Administrator
South Carolina State Library

javascript-request at LaTech.edu wrote:

> Send Javascript mailing list submissions to
>         javascript at LaTech.edu
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://lists.LaTech.edu/mailman/listinfo/javascript
> or, via email, send a message with subject or body 'help' to
>         javascript-request at LaTech.edu
>
> You can reach the person managing the list at
>         javascript-admin at LaTech.edu
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Javascript digest..."
>
> Today's Topics:
>
>    1. Control IE "text size" (greg at krieser.com)
>    2. RE: Control IE "text size" (Muchacho, Laurent (TWIi London))
>    3. Re: Control IE "text size" (Dan Costea)
>    4. Re: Control IE "text size" (greg at krieser.com)
>
> --__--__--
>
> Message: 1
> To: javascript at latech.edu
> From: "greg at krieser.com" <greg at krieser.com>
> Date: Tue, 24 Sep 2002 08:52:29 -0500
> Subject: [Javascript] Control IE "text size"
> Reply-To: javascript at LaTech.edu
>
> Internet Explorer provides the user the ability to adjust text size using the View menu, then Text Size. I noticed that some site have format problems (particularly in closely cropped table) when 'larger' and 'largest' sizes are specified. The 'medium' se
> tting is the default. Is it possible to temporarily control this setting using JavaScript? Is the best solution to make graphics of text that could be a problem?
>
> Thanks,
>
> Greg Krieser
> greg at krieser.com
>
> --__--__--
>
> Message: 2
> From: "Muchacho, Laurent (TWIi London)" <LMuchacho at twii.net>
> To: "'javascript at LaTech.edu'" <javascript at LaTech.edu>
> Subject: RE: [Javascript] Control IE "text size"
> Date: Tue, 24 Sep 2002 15:01:16 +0100
> Reply-To: javascript at LaTech.edu
>
> Hi Greg
>
> I don't think you can control this setting in internet explorer or other
> browser but you can use CSS to set style to your text and the setting will
> not overide the size you specified to your font
>
> Laurent
>
> -----Original Message-----
> From: greg at krieser.com [mailto:greg at krieser.com]
> Sent: 24 September 2002 14:52
> To: javascript at latech.edu
> Subject: [Javascript] Control IE "text size"
>
> Internet Explorer provides the user the ability to adjust text size using
> the View menu, then Text Size. I noticed that some site have format problems
> (particularly in closely cropped table) when 'larger' and 'largest' sizes
> are specified. The 'medium' setting is the default. Is it possible to
> temporarily control this setting using JavaScript? Is the best solution to
> make graphics of text that could be a problem?
>
> Thanks,
>
> Greg Krieser
> greg at krieser.com
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript
>
> DISCLAIMER - The preceding e-mail message (including any attachments)
> contains information that may be confidential, may be protected by the
> attorney-client or other applicable privileges, or may constitute non-public
> information.  It is intended to be conveyed only to the designated
> recipient(s) named above.  If you are not an intended recipient of this
> message, or have otherwise received it in error, please notify the sender by
> replying to this message and then delete all copies of it from your computer
> system.  Any use, dissemination, distribution, or reproduction of this
> message by unintended recipients is not authorized and may be unlawful. The
> contents of this communication do not necessarily represent the views of
> this company.
>
> --__--__--
>
> Message: 3
> From: "Dan Costea" <costea.dan at ssi-schaefer.ro>
> To: <javascript at LaTech.edu>
> Subject: Re: [Javascript] Control IE "text size"
> Date: Tue, 24 Sep 2002 17:01:42 +0300
> Reply-To: javascript at LaTech.edu
>
> You can set fixed font size by using Cascading Style Sheets (css). For
> example:
>
> <div style="font-size: 20pt;">asdfasdfasd</div>
> or
> <div style="font-size: 20px;">asdfasdfasd</div>
>
> So, you can change the font size to depend on the rezolution (px) or not
> (pt).
>
> ----- Original Message -----
> From: <greg at krieser.com>
> To: <javascript at LaTech.edu>
> Sent: Tuesday, September 24, 2002 4:52 PM
> Subject: [Javascript] Control IE "text size"
>
> > Internet Explorer provides the user the ability to adjust text size using
> the View menu, then Text Size. I noticed that some site have format problems
> (particularly in closely cropped table) when 'larger' and 'largest' sizes
> are specified. The 'medium' setting is the default. Is it possible to
> temporarily control this setting using JavaScript? Is the best solution to
> make graphics of text that could be a problem?
> >
> > Thanks,
> >
> > Greg Krieser
> > greg at krieser.com
> > _______________________________________________
> > Javascript mailing list
> > Javascript at LaTech.edu
> > https://lists.LaTech.edu/mailman/listinfo/javascript
>
> --__--__--
>
> Message: 4
> To: javascript at LaTech.edu, <javascript at LaTech.edu>
> From: "greg at krieser.com" <greg at krieser.com>
> Cc: costea.dan at ssi-schaefer.ro, javascript-admin at LaTech.edu
> Subject: Re: [Javascript] Control IE "text size"
> Date: Tue, 24 Sep 2002 10:47:29 -0500
> Reply-To: javascript at LaTech.edu
>
> GREAT solution!  Thanks.
>
> The following message was sent by "Dan Costea" <costea.dan at ssi-schaefer.ro> on Tue, 24 Sep 2002 17:01:42 +0300.
>
> > You can set fixed font size by using Cascading Style Sheets (css). For
> > example:
> >
> > <div style="font-size: 20pt;">asdfasdfasd</div>
> > or
> > <div style="font-size: 20px;">asdfasdfasd</div>
> >
> > So, you can change the font size to depend on the rezolution (px) or not
> > (pt).
> >
> > ----- Original Message -----
> > From: <greg at krieser.com>
> > To: <javascript at LaTech.edu>
> > Sent: Tuesday, September 24, 2002 4:52 PM
> > Subject: [Javascript] Control IE "text size"
> >
> >
> > > Internet Explorer provides the user the ability to adjust text size using
> > the View menu, then Text Size. I noticed that some site have format problems
> > (particularly in closely cropped table) when 'larger' and 'largest' sizes
> > are specified. The 'medium' setting is the default. Is it possible to
> > temporarily control this setting using JavaScript? Is the best solution
> > to
> > make graphics of text that could be a problem?
> > >
> > > Thanks,
> > >
> > > Greg Krieser
> > > greg at krieser.com
> > > _______________________________________________
> > > Javascript mailing list
> > > Javascript at LaTech.edu
> > > https://lists.LaTech.edu/mailman/listinfo/javascript
> >
> > _______________________________________________
> > Javascript mailing list
> > Javascript at LaTech.edu
> > https://lists.LaTech.edu/mailman/listinfo/javascript
> >
>
> --__--__--
>
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript
>
> End of Javascript Digest

--
Cheryl Kirkpatrick
Web Administrator/
Information Technology Librarian
South Carolina State Library
http://www.state.sc.us/scsl/
Telephone: 803.734.5831





More information about the Javascript mailing list