HighDots Forums  

What font is a page using? Any easy way to find out?

alt.html alt.html


Discuss What font is a page using? Any easy way to find out? in the alt.html forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Mike Barnard
 
Posts: n/a

Default What font is a page using? Any easy way to find out? - 03-23-2008 , 09:52 AM






I am busy for a sunday afternoon, aren't I?

When I look at a webpage, if I want to know what font is being used on
the screen, is there a way to find out? Is the info held in a hidden
variable somewhere for example?

I know I can look into the code and or css and see the fonts
specified, but unless you happen to know exactly which font looks like
which how do you identify the on screen one?

Google? Really? Ok...

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

Default Re: What font is a page using? Any easy way to find out? - 03-23-2008 , 10:14 AM






Mike Barnard wrote:
Quote:
I am busy for a sunday afternoon, aren't I?

When I look at a webpage, if I want to know what font is being used on
the screen, is there a way to find out? Is the info held in a hidden
variable somewhere for example?

I know I can look into the code and or css and see the fonts
specified, but unless you happen to know exactly which font looks like
which how do you identify the on screen one?

Google? Really? Ok...
Firefox [Web Developer Bar|Firebug|DOM Inspector] for selected element
look at computed style, see the font list and note the first on to match
what you have on your system...

--
Take care,

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


Reply With Quote
  #3  
Old   
dorayme
 
Posts: n/a

Default Re: What font is a page using? Any easy way to find out? - 03-24-2008 , 02:02 AM



In article <6aaf6$47e673e1$40cba7af$27813 (AT) NAXS (DOT) COM>,
"Jonathan N. Little" <lws4art (AT) central (DOT) net> wrote:

Quote:
Mike Barnard wrote:
I am busy for a sunday afternoon, aren't I?

When I look at a webpage, if I want to know what font is being used on
the screen, is there a way to find out? Is the info held in a hidden
variable somewhere for example?

I know I can look into the code and or css and see the fonts
specified, but unless you happen to know exactly which font looks like
which how do you identify the on screen one?

Google? Really? Ok...

Firefox [Web Developer Bar|Firebug|DOM Inspector] for selected element
look at computed style, see the font list and note the first on to match
what you have on your system...
For example, you open the website in FF, you have the Developer
installed. Choose Outline from one of the developer menus. It will tell
you in a little text string above the website where that item is, it may
be in body > #wrapper > #leftcol > #nav > ul > li so you would look to
see if there any font-family instructions in some of these ids or lis,
if not, where is it getting its font? Look at body maybe. Like that.

--
dorayme


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

Default Re: What font is a page using? Any easy way to find out? - 03-24-2008 , 08:17 AM



dorayme wrote:

Quote:
For example, you open the website in FF, you have the Developer
installed. Choose Outline from one of the developer menus. It will tell
you in a little text string above the website where that item is, it may
be in body > #wrapper > #leftcol > #nav > ul > li so you would look to
see if there any font-family instructions in some of these ids or lis,
if not, where is it getting its font? Look at body maybe. Like that.
The problem is with some folks stylesheets it is not always obvious this
what one element's style may be, with specificity and conflicting, or
just poorly composed rules. What you what is the computed style, what
you wind up with in the end. Better to trace the element in the DOM
inspector

body
+div
+div
+ul
+li
and view the computed style pane, the result can sometimes be surprising.

--
Take care,

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


Reply With Quote
  #5  
Old   
dorayme
 
Posts: n/a

Default Re: What font is a page using? Any easy way to find out? - 03-24-2008 , 04:38 PM



In article <39a10$47e7a99c$40cba7af$7993 (AT) NAXS (DOT) COM>,
"Jonathan N. Little" <lws4art (AT) central (DOT) net> wrote:

Quote:
dorayme wrote:

For example, you open the website in FF, you have the Developer
installed. Choose Outline from one of the developer menus. It will tell
you in a little text string above the website where that item is, it may
be in body > #wrapper > #leftcol > #nav > ul > li so you would look to
see if there any font-family instructions in some of these ids or lis,
if not, where is it getting its font? Look at body maybe. Like that.

The problem is with some folks stylesheets it is not always obvious this
what one element's style may be, with specificity and conflicting, or
just poorly composed rules. What you what is the computed style, what
you wind up with in the end. Better to trace the element in the DOM
inspector
You are right.

--
dorayme


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.