Welcome to HostingForumz.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

Style Sheet Times New Roman

 
Goto page 1, 2, 3, 4, 5
   Web Hosting Problem Solving Community! (Home) -> Webmaster RSS
Related Topics:
style sheet warnings.. what do they really want - hi.. I just ran my through the and it validated but I got a ton of warnings, which I assume means something else would be but I can't figure out what... like.. why should anyone care if I have no color on..

how to create "style sheet" in frontpage?? - Hi there... As referred to the was abit loss on this.. would be if someone could guide me step by step.. Thanks (P.s: please reply to the group, as the email is a DUMMY address. thanks) --- this Outgoing mail is certified Virus..

Style Sheet disappears when content delivered as XHTML - This is weird. I have made a simple page using XHTML & CSS. It works great on all browsers when the content is delivered as HTML: However, when I deliver the content as XHTML, the style sheet is not on..

Passing parameters to style sheet, e.g. "mystyle.css?color.. - How can I pass to my style sheets? I have noticed a couple of sites are now passing variables to the style sheet, which appear to be at run time. For example: <link

Anyone have a detailed product sheet? - Hi all; I'm looking for a detailed and varied product sheet in an Excel or CSV format in order to write a demo of a dynamic inventory display system. Ideally, I'd like a product listing with the following columns (or close to it): SKU
Next:  Webmaster: My Domains blog?  
Author Message
fatkinson

External


Since: Jul 11, 2003
Posts: 187



(Msg. 1) Posted: Sat Feb 09, 2008 10:26 pm
Post subject: Style Sheet Times New Roman
Archived from groups: alt>www>webmaster (more info?)

I rarely use style sheets so I know little about coding them.
However, I have a Web site where I need to force the fonts on
the page to come up as Times New Roman regardless of which font the
browser is set to.

Can someone tell me how to do this?

Regards,



Fred

 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
user295

External


Since: Nov 07, 2003
Posts: 366



(Msg. 2) Posted: Sun Feb 10, 2008 2:04 am
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Fred Atkinson wrote:

> I rarely use style sheets so I know little about coding them.

http://htmldog.com/guides/cssbeginner/

> However, I have a Web site where I need to force the fonts on the page
> to come up as Times New Roman regardless of which font the browser is
> set to.

You can't force anything from a web page. Some of your visitors are not
going to have Times New Roman on their computers. (It's an ugly font.)

That said,

#content { font-family: "Times New Roman", Georgia, serif; }

Though I would use Georgia, it's much easier to read:

#content { font-family: Georgia, "Times New Roman", serif; }

> Can someone tell me how to do this?

Make an image of the text.

--
-bts
-Friends don't let friends drive Vista

 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
fatkinson

External


Since: Jul 11, 2003
Posts: 187



(Msg. 3) Posted: Sun Feb 10, 2008 2:04 am
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Sun, 10 Feb 2008 04:16:54 GMT, "Beauregard T. Shagnasty"
<a.nony.mous.TakeThisOut@example.invalid> wrote:

>Fred Atkinson wrote:
>
>> I rarely use style sheets so I know little about coding them.
>
>http://htmldog.com/guides/cssbeginner/
>
>> However, I have a Web site where I need to force the fonts on the page
>> to come up as Times New Roman regardless of which font the browser is
>> set to.
>
>You can't force anything from a web page. Some of your visitors are not
>going to have Times New Roman on their computers. (It's an ugly font.)
>
>That said,
>
>#content { font-family: "Times New Roman", Georgia, serif; }
>
>Though I would use Georgia, it's much easier to read:
>
>#content { font-family: Georgia, "Times New Roman", serif; }
>
>> Can someone tell me how to do this?
>
>Make an image of the text.

Well, I decided that the better way to do it was to just put
the font tag around the affected text.

I know the font is ugly. The issue is that it has a special
character that not all fonts support. If the font changes, the
character doesn't show up right.

I'll check the common fonts and see if they might support it.
Regards, and thanks,



Fred
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
mynameisnobodyodyssea

External


Since: Nov 16, 2007
Posts: 32



(Msg. 4) Posted: Sun Feb 10, 2008 4:31 am
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Feb 10, 4:56 am, Fred Atkinson wrote:

> The issue is that it has a special
> character that not all fonts support. If the font changes, the
> character doesn't show up right.

Maybe have a look at character encoding
http://www.w3.org/TR/html401/charset.html
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
John Hosking

External


Since: Jan 15, 2007
Posts: 74



(Msg. 5) Posted: Sun Feb 10, 2008 11:05 am
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Fred Atkinson wrote:
> On Sun, 10 Feb 2008 04:16:54 GMT, "Beauregard T. Shagnasty" wrote:
>
>> You can't force anything from a web page. Some of your visitors are not
>> going to have Times New Roman on their computers. (It's an ugly font.)
>>
>> That said,
>>
>> #content { font-family: "Times New Roman", Georgia, serif; }
>>
>> Though I would use Georgia, it's much easier to read:
>>
>> #content { font-family: Georgia, "Times New Roman", serif; }
>>
>>> Can someone tell me how to do this?
>> Make an image of the text.
>
> Well, I decided that the better way to do it was to just put
> the font tag around the affected text.

If by "better" you mean "better than making an image of the text," then
okay, that's not a bad decision; you're trading the uncertainty of what
font the user will actually see against the drawbacks of having
(non-scalable, non-searchable) graphics.

But if you mean using <font> instead of a CSS style is "better," then I
have to disagree. First of all, if the "special character" appears more
than once, you need to include the <font> overhead everywhere. But
beyond that, using <font> is no more a guarantee that the character will
show up right than using CSS.

Note that Beauregard's suggested CSS rules might give your user Georgia
or some other serif font, either of which might lack the one glyph you
are trying to show. If you can't find some satisfactory alternatives
(from the research you promise below), you might as well just stick with

#content { font-family: "Times New Roman"; }

>
> I'll check the common fonts and see if they might support it.



--
John
Where are we going? And what's with this hand basket?
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
user295

External


Since: Nov 07, 2003
Posts: 366



(Msg. 6) Posted: Sun Feb 10, 2008 11:05 am
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

John Hosking wrote:

> Note that Beauregard's suggested CSS rules might give your user
> Georgia or some other serif font, either of which might lack the one
> glyph you are trying to show.

Note that Fred didn't mention "The issue is that it [TNR] has a special
character that not all fonts support." in his original post. Smile

I wonder what the special character is...

--
-bts
-Friends don't let friends drive Vista
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
fatkinson

External


Since: Jul 11, 2003
Posts: 187



(Msg. 7) Posted: Sun Feb 10, 2008 12:49 pm
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Sun, 10 Feb 2008 13:45:28 +0100, John Hosking
<John DeleteThis @DELETE.Hosking.name.INVALID> wrote:

>Fred Atkinson wrote:
>If by "better" you mean "better than making an image of the text," then
>okay, that's not a bad decision; you're trading the uncertainty of what
>font the user will actually see against the drawbacks of having
>(non-scalable, non-searchable) graphics.
>
>But if you mean using <font> instead of a CSS style is "better," then I
>have to disagree. First of all, if the "special character" appears more
>than once, you need to include the <font> overhead everywhere. But
>beyond that, using <font> is no more a guarantee that the character will
>show up right than using CSS.
>
>Note that Beauregard's suggested CSS rules might give your user Georgia
>or some other serif font, either of which might lack the one glyph you
>are trying to show. If you can't find some satisfactory alternatives
>(from the research you promise below), you might as well just stick with
>
>#content { font-family: "Times New Roman"; }
>
>>
>> I'll check the common fonts and see if they might support it.

I enclose the script that generates the data inside the TNR
font. That way, the script always displays it correctly.

The rest of the page uses the font selected by the browser.

Regards,



Fred
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
fatkinson

External


Since: Jul 11, 2003
Posts: 187



(Msg. 8) Posted: Sun Feb 10, 2008 12:50 pm
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Sun, 10 Feb 2008 14:10:15 GMT, "Beauregard T. Shagnasty"
<a.nony.mous.RemoveThis@example.invalid> wrote:

>John Hosking wrote:
>
>> Note that Beauregard's suggested CSS rules might give your user
>> Georgia or some other serif font, either of which might lack the one
>> glyph you are trying to show.
>
>Note that Fred didn't mention "The issue is that it [TNR] has a special
>character that not all fonts support." in his original post. Smile
>
>I wonder what the special character is...

The special character is the Ø.

Regards,



Fred
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
John Bokma

External


Since: Apr 27, 2005
Posts: 593



(Msg. 9) Posted: Sun Feb 10, 2008 2:04 pm
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Fred Atkinson <fatkinson RemoveThis @mishmash.com> wrote:

> I know the font is ugly. The issue is that it has a special
> character that not all fonts support. If the font changes, the
> character doesn't show up right.

Which is? You might fix this better & easier by using utf-8 encoding.

> I'll check the common fonts and see if they might support it.
> Regards, and thanks,

Better: check an overview of unicode characters. If it's there, either use
utf-8 encoding, or use entity encoding of the character (&#dddd;) if you
prefer a different encoding.

--
John Bokma http://johnbokma.com/
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
user295

External


Since: Nov 07, 2003
Posts: 366



(Msg. 10) Posted: Sun Feb 10, 2008 5:05 pm
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Fred Atkinson wrote:

> "Beauregard T. Shagnasty" wrote:
>> Note that Fred didn't mention "The issue is that it [TNR] has a
>> special character that not all fonts support." in his original post.
>>: -)
>>
>> I wonder what the special character is...
>
> The special character is the Ø.

I see that glyph in several other fonts, including Georgia.
It also can be used with sans-serif fonts, monospace fonts...

What happens when you eschew using the <font> tags, and place:

<p>Fred's special character: Ø or Ø </p>

...in your HTML?

--
-bts
-Friends don't let friends drive Vista
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
Bergamot

External


Since: Oct 17, 2006
Posts: 65



(Msg. 11) Posted: Sun Feb 10, 2008 5:56 pm
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Beauregard T. Shagnasty wrote:
> Fred Atkinson wrote:
>
>> The special character is the Ø.
>
> What happens when you eschew using the <font> tags, and place:
> <p>Fred's special character: Ø or Ø </p>

The OP is using it as a slashed zero, but that character is really a
letter, not a number.

I suppose misusing it like that is no worse than using angle quote marks
as arrows, which is fairly common.

--
Berg
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
fatkinson

External


Since: Jul 11, 2003
Posts: 187



(Msg. 12) Posted: Sun Feb 10, 2008 6:20 pm
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Sun, 10 Feb 2008 18:41:56 GMT, "Beauregard T. Shagnasty"
<a.nony.mous.TakeThisOut@example.invalid> wrote:

>I see that glyph in several other fonts, including Georgia.
>It also can be used with sans-serif fonts, monospace fonts...
>
>What happens when you eschew using the <font> tags, and place:
>
><p>Fred's special character: Ø or Ø </p>
>
>..in your HTML?

I'm not sure specifically what you mean (coding wise) when you
say 'eschew'.

I tried just putting it in when strings were transmitted that
might display that character. But there was a lot of extraneous
coding. And I was concerned that when the browser's font was very
different than the slashed zero (Ø) that it would look weird being so
different from the rest of the characters.

So I put the <font TNR> tag at the beginning of the table and
the </font> tag just before the table ends. That way, we don't lose
the character and the character doesn't look different from the rest
of what is in the table generated.

Take a look at http://www.wb4aej.com/hamdomain . The script
generates the enormous table that you see there. You'll see what I
mean.

I appreciate your feedback.

Regards,



Fred
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
user117

External


Since: Jul 02, 2003
Posts: 692



(Msg. 13) Posted: Sun Feb 10, 2008 7:53 pm
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Fred Atkinson wrote:

> So I put the <font TNR> tag at the beginning of the table and the
> </font> tag just before the table ends. That way, we don't lose the
> character and the character doesn't look different from the rest of what
> is in the table generated.
>
> Take a look at http://www.wb4aej.com/hamdomain . The script generates
> the enormous table that you see there. You'll see what I mean.

Here's what I see.

http://blinkynet.net/stuff/comp/atkinson.jpg


--
Blinky
Killing all posts from Google Groups
The Usenet Improvement Project: http://improve-usenet.org
Blinky: http://blinkynet.net
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
jstucklex

External


Since: Jul 14, 2003
Posts: 1507



(Msg. 14) Posted: Sun Feb 10, 2008 8:24 pm
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Bergamot wrote:
> Beauregard T. Shagnasty wrote:
>> Fred Atkinson wrote:
>>
>>> The special character is the Ø.
>> What happens when you eschew using the <font> tags, and place:
>> <p>Fred's special character: Ø or Ø </p>
>
> The OP is using it as a slashed zero, but that character is really a
> letter, not a number.
>
> I suppose misusing it like that is no worse than using angle quote marks
> as arrows, which is fairly common.
>

It has a very specific use, and within that it is definitely NOT az
"misuse".

I suggest you understand the actual use being made of something before
you declare it a "misuse".

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex.RemoveThis@attglobal.net
==================
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
fatkinson

External


Since: Jul 11, 2003
Posts: 187



(Msg. 15) Posted: Sun Feb 10, 2008 10:34 pm
Post subject: Re: Style Sheet Times New Roman [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Sun, 10 Feb 2008 17:56:42 -0600, Bergamot <bergamot DeleteThis @visi.com>
wrote:

>Beauregard T. Shagnasty wrote:
>> Fred Atkinson wrote:
>>
>>> The special character is the Ø.
>>
>> What happens when you eschew using the <font> tags, and place:
>> <p>Fred's special character: Ø or Ø </p>
>
>The OP is using it as a slashed zero, but that character is really a
>letter, not a number.
>
>I suppose misusing it like that is no worse than using angle quote marks
>as arrows, which is fairly common.

You aren't thinking like a ham radio operator (which is what
the page is for). Those copying Morse code made the zero as a slashed
zero so that when they were writing fast because they were receiving a
fast sender, the slashed zero made it clear that it was a zero and not
the letter O. It's part of ham radio culture.

Regards,



Fred
 >> Stay informed about: Style Sheet Times New Roman 
Back to top
Login to vote
Display posts from previous:   
   Web Hosting Problem Solving Community! (Home) -> Webmaster All times are: Pacific Time (US & Canada) (change)
Goto page 1, 2, 3, 4, 5
Page 1 of 5

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]