HighDots Forums  

Re: Approximation of old font needed

Cascading Style Sheets Layout/presentation on the WWW (comp.infosystems.www.authoring.stylesheets)


Discuss Re: Approximation of old font needed in the Cascading Style Sheets forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Nik Coughlin
 
Posts: n/a

Default Re: Approximation of old font needed - 04-28-2008 , 11:13 PM







"Andy Mabbett" <usenet200309 (AT) pigsonthewing (DOT) org.uk> wrote

Quote:
I'm about to publish (what's the web equivalent of "reprint"?) an old
paper article, whose heading is in this font:

http://www.flickr.com/photos/pigsonthewing/2446437162/

Can anyone kindly suggest a similar font suitable for use in CSS (I'll
make sure something less fancy is specified as a fallback).

Thank you.
There's always sIFR:

http://www.mikeindustries.com/blog/sifr/



Reply With Quote
  #2  
Old   
John Hosking
 
Posts: n/a

Default Re: Approximation of old font needed - 04-29-2008 , 04:14 AM






Nik Coughlin wrote:
Quote:
"Andy Mabbett" <usenet200309 (AT) pigsonthewing (DOT) org.uk> wrote in message
news:dhei1pspsLFIFwDJ (AT) pigsonthewing (DOT) org.uk...


Can anyone kindly suggest a similar font suitable for use in CSS (I'll
make sure something less fancy is specified as a fallback).


There's always sIFR:

http://www.mikeindustries.com/blog/sifr/
Thanks for the interesting link. I hadn't known about this.

Although I have to hesitate when I see an article about "Accessible
Typography" in 10px text...

--
John
font-size:62.5%; is *not* "Accessible"


Reply With Quote
  #3  
Old   
Nik Coughlin
 
Posts: n/a

Default Re: Approximation of old font needed - 04-29-2008 , 05:34 PM



"John Hosking" <John (AT) DELETE (DOT) Hosking.name.INVALID> wrote

Quote:
Nik Coughlin wrote:

"Andy Mabbett" <usenet200309 (AT) pigsonthewing (DOT) org.uk> wrote in message
news:dhei1pspsLFIFwDJ (AT) pigsonthewing (DOT) org.uk...


Can anyone kindly suggest a similar font suitable for use in CSS (I'll
make sure something less fancy is specified as a fallback).


There's always sIFR:

http://www.mikeindustries.com/blog/sifr/

Thanks for the interesting link. I hadn't known about this.

Although I have to hesitate when I see an article about "Accessible
Typography" in 10px text...
It is interesting but there are a number of things that need to be taken
into account when using it.

One of these is that it doesn't handle you changing the text-size while
viewing the page, you need to refresh the page for the new text-size to take
effect. Although it would be pretty easy to write a js handler for this - I
have done something similar for a text-based game written in js that needed
to know when the text size changed.



Reply With Quote
  #4  
Old   
Jeremy
 
Posts: n/a

Default Re: Approximation of old font needed - 04-29-2008 , 07:26 PM



Nik Coughlin wrote:
Quote:
"John Hosking" <John (AT) DELETE (DOT) Hosking.name.INVALID> wrote in message
news:4816e732$1_6 (AT) news (DOT) bluewin.ch...
Nik Coughlin wrote:

"Andy Mabbett" <usenet200309 (AT) pigsonthewing (DOT) org.uk> wrote in message
news:dhei1pspsLFIFwDJ (AT) pigsonthewing (DOT) org.uk...


Can anyone kindly suggest a similar font suitable for use in CSS (I'll
make sure something less fancy is specified as a fallback).


There's always sIFR:

http://www.mikeindustries.com/blog/sifr/

Thanks for the interesting link. I hadn't known about this.

Although I have to hesitate when I see an article about "Accessible
Typography" in 10px text...

It is interesting but there are a number of things that need to be taken
into account when using it.

One of these is that it doesn't handle you changing the text-size while
viewing the page, you need to refresh the page for the new text-size to
take effect. Although it would be pretty easy to write a js handler for
this - I have done something similar for a text-based game written in js
that needed to know when the text size changed.
A little off topic now, but what event is fired when the text size is
changed?


Reply With Quote
  #5  
Old   
Nik Coughlin
 
Posts: n/a

Default Re: Approximation of old font needed - 04-30-2008 , 03:41 AM



Jeremy wrote:
Quote:
Nik Coughlin wrote:
"John Hosking" <John (AT) DELETE (DOT) Hosking.name.INVALID> wrote in message
news:4816e732$1_6 (AT) news (DOT) bluewin.ch...
Nik Coughlin wrote:

"Andy Mabbett" <usenet200309 (AT) pigsonthewing (DOT) org.uk> wrote in message
news:dhei1pspsLFIFwDJ (AT) pigsonthewing (DOT) org.uk...


Can anyone kindly suggest a similar font suitable for use in CSS
(I'll make sure something less fancy is specified as a fallback).


There's always sIFR:

http://www.mikeindustries.com/blog/sifr/

Thanks for the interesting link. I hadn't known about this.

Although I have to hesitate when I see an article about "Accessible
Typography" in 10px text...

It is interesting but there are a number of things that need to be
taken into account when using it.

One of these is that it doesn't handle you changing the text-size
while viewing the page, you need to refresh the page for the new
text-size to take effect. Although it would be pretty easy to write
a js handler for this - I have done something similar for a
text-based game written in js that needed to know when the text size
changed.

A little off topic now, but what event is fired when the text size is
changed?
AFAIK none. I had a setTimeout 10 times a second creating a span with a
single character in it, getting its height, destroying it and comparing the
it to the height it was last time I checked it. If they differ then font
size has changed. Brute force




Reply With Quote
  #6  
Old   
Jonathan N. Little
 
Posts: n/a

Default Re: Approximation of old font needed - 04-30-2008 , 09:01 AM



Nik Coughlin wrote:

Quote:
AFAIK none. I had a setTimeout 10 times a second creating a span with a
single character in it, getting its height, destroying it and comparing the
it to the height it was last time I checked it. If they differ then font
size has changed. Brute force
Ugh! Want a horrible hack, considering totally unnecessary if one
designs with blocks of text are proportional with respect to the font.
Rally not hard to do, just stop using pixels for dimensions except for
images...

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com


Reply With Quote
  #7  
Old   
Nik Coughlin
 
Posts: n/a

Default Re: Approximation of old font needed - 04-30-2008 , 04:18 PM




"Jonathan N. Little" <lws4art (AT) central (DOT) net> wrote

Quote:
Nik Coughlin wrote:

AFAIK none. I had a setTimeout 10 times a second creating a span with a
single character in it, getting its height, destroying it and comparing
the it to the height it was last time I checked it. If they differ then
font size has changed. Brute force

Ugh! Want a horrible hack, considering totally unnecessary if one designs
with blocks of text are proportional with respect to the font. Rally not
hard to do, just stop using pixels for dimensions except for images...
I was using it for a javascript game, not a website.



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



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.