Re: [css-d] I need a good scripted font

2010-07-15 Thread Philip Taylor (Webmaster, Ret'd)


Felix Miata wrote:

 For ideas on what people have:
 http://www.codestyle.org/css/font-family/sampler-CombinedResultsFull.shtml

This is a very useful resource, Felix, but a comment
and a question :

1) The Platform icon completely passed my notice.
I am not a native speaker of Iconish, and would see
the Platform field far more easily if it were
textual.  As it is, I spent some considerable time
trying to work out on what basis you had concluded
that Lucida Grande had 100% coverage, and it was
only when I copied and pasted the relevant line into
an earlier draft of this message that the word
Mac[intosh] appeared :-(

2) The font sampler page can give very misleading
impressions.  I looked at the Lucida Grande page and
thought it was excellent, wondering why my earlier
attempts to use Lucida Grande as browser default
had produced such sub-optimal results.  I then
realised that I have removed Lucida Grande from
this machine for that very reason, so what I was
seeing was in a browser default font and not in
Lucida Grande.  Would it be possible to include
a JavaScript fragment early that can report in
which font a sample page is actually being rendered ?

Philip Taylor
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] I need a good scripted font

2010-07-15 Thread Philip Taylor (Webmaster, Ret'd)
Ah, please forgive me : I thought it was your work.
Philip Taylor

Felix Miata wrote:
 On 2010/07/15 09:25 (GMT+0100) Philip Taylor (Webmaster, Ret'd) composed:

 Felix Miata wrote:

 For ideas on what people have:
 http://www.codestyle.org/css/font-family/sampler-CombinedResultsFull.shtml

 This is a very useful resource, Felix, but a comment
 and a question :
 ...I spent some considerable time
 trying to work out on what basis you had concluded

 I have no control over what that site's author(s?) concluded.
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] I need a good scripted font

2010-07-15 Thread David Laakso
Andy B. wrote:
 Ok. Try a look and see how it turns out. Are you sure 44 point font isn't
 too huge?


   
 www.eternityrecords.org/private/


 


These changes will not correct all issues at the moment. But I  think 
they will put you in a better position than you are now.

Change the markup tp read:
div id=logo
!--div class=EternityRecords_TitleEternity Records/div--
h1Eternity Records/h1
/div

Amend the CSS.

From:
body {
font-family: Helvetica,Arial,sans-serif;
l/ine-height: 1.3em;
margin: 0px 0px 0px 0px;
font-size: 75%;
color: #333;
}

To:
body {
font: 100% Helvetica, Arial,sans-serif;
margin: 0;
background: #fff;   
color: #222;
}

From:
div#logo {
position: absolute;
left: 0;
top: 0;
float: left;
width: 298px;
height: 75px;
b/ackground: url(mw_jooml.png) 0 0 no-repeat;
margin-left: 30px;
margin-top: 25px;
}

To:
#logo {
position: absolute;
left: 30px;
top: 30px;
width: 298px;
min-height: 75px;
}

* html #logo { height: 75px;} /* 4 IE/6.0 */



From:
.EternityRecords_Title {
left-margin: auto;
right-margin: auto;
font: italic 3.4em Palatino,Palatino Linotype, serif;
}

To:
#logo h1  {
color : #000;
font : italic 270% Palatino, Palatino Linotype, serif;
margin: 0;
}


Best,
~d



-- 
http://chelseacreekstudio.com/

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] I need a good scripted font

2010-07-14 Thread Andy B.
www.eternityrecords.org/private/

In the top left corner of the page are the words Eternity Records set in
1.5em font size. 2 questions:

1. Does it appear to fit well in any of your browsers for the size it has to
fit in (298px wide and 75px high)?
2. I need a scripted font (some sort of nice professional and easily
readable font for it). Any ideas on what to use? I would also need a generic
font family to use in case the browser doesn't have that particular font.
Something in scripted font if possible.

Thanks for your help.

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] I need a good scripted font

2010-07-14 Thread David Laakso
Andy B. wrote:
 www.eternityrecords.org/private/

 In the top left corner of the page are the words Eternity Records set in
 1.5em font size. 2 questions:

 1. Does it appear to fit well in any of your browsers for the size it has to
 fit in (298px wide and 75px high)?
   


It will depend on the font.



 2. I need a scripted font (some sort of nice professional and easily
 readable font for it). Any ideas on what to use? I would also need a generic
 font family to use in case the browser doesn't have that particular font.
 Something in scripted font if possible.
   




Calling a script-font is pretty much unpredictable among OSes.
You may get much better results for both size and availability using an 
italic serif.

I would try:

.EternityRecords_Title {
font: italic 3.4em Palatino,Palatino Linotype, serif;
/*font-size: 1.5em;delete*/
left-margin: auto;
right-margin: auto;
}

Best,
~d
aside
The font-size you have specified for the text in the left and right 
columns will be very difficult to read on landing for some sighted 
viewers...




-- 
http://chelseacreekstudio.com/

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] I need a good scripted font

2010-07-14 Thread David Laakso
Andy B. wrote:
 Ok. Try a look and see how it turns out. Are you sure 44 point font isn't
 too huge?

   
 www.eternityrecords.org/private/


 


   


I am not sure about anything.

People ask questions. Some of us offer suggestions. Beyond that, I know 
from nothing.

Best,
~d

-- 

http://chelseacreekstudio.com/

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] I need a good scripted font

2010-07-14 Thread Chris Akins
On Wed, Jul 14, 2010 at 1:52 PM, Andy B. sonfir...@gmail.com wrote:

 www.eternityrecords.org/private/

 In the top left corner of the page are the words Eternity Records set in
 1.5em font size. 2 questions:

 1. Does it appear to fit well in any of your browsers for the size it has
 to
 fit in (298px wide and 75px high)?
 2. I need a scripted font (some sort of nice professional and easily
 readable font for it). Any ideas on what to use? I would also need a
 generic
 font family to use in case the browser doesn't have that particular font.
 Something in scripted font if possible.


I'm not an admin, nor do I play one on TV . . . but just a friendly
suggestion that this list is about CSS.  Seems this question is a question
of design.  Perhaps a more general graphic or web design forum would be the
appropriate place for it?
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] I need a good scripted font

2010-07-14 Thread Claude Needham
 On Wed, Jul 14, 2010 at 1:52 PM, Andy B. sonfir...@gmail.com wrote:

Taking this as a css question, because it is posted in a css forum, I
will assume you are asking which font might be well represented in the
different browsers. Not sure how much of a css question that is
either, but it is certainly something that worries me from time to
time.

I have been experimenting with a font stack calculator:
http://www.codestyle.org/servlets/FontStack

Assuming the values are correct, this will give you some idea which
font selections will be represented in PC, Mac,  Linux.

Regards.
Claude
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] I need a good scripted font

2010-07-14 Thread Felix Miata
On 2010/07/14 14:52 (GMT-0400) Andy B. composed:

 www.eternityrecords.org/private/

 In the top left corner of the page are the words Eternity Records set in
 1.5em font size. 2 questions:

 1. Does it appear to fit well in any of your browsers for the size it has to
 fit in (298px wide and 75px high)?

Here, Records displays below Eternity, almost obliterating Home below,
vertically centered below the vertical center of the home/news buttons in the
center. FWIW, the subscribe  unsubscribe buttons are stacked here, not side
by side, which I suspect is intended.

 2. I need a scripted font (some sort of nice professional and easily
 readable font for it). Any ideas on what to use? I would also need a generic
 font family to use in case the browser doesn't have that particular font.
 Something in scripted font if possible.

For ideas on what people have:
http://www.codestyle.org/css/font-family/sampler-CombinedResultsFull.shtml
-- 
The wise are known for their understanding, and pleasant
words are persuasive. Proverbs 16:21 (New Living Translation)

 Team OS/2 ** Reg. Linux User #211409

Felix Miata  ***  http://fm.no-ip.com/
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/