what Font is used in PureBasic phpBB Forum

For everything that's not in any way related to PureBasic. General chat etc...
User avatar
VB6_to_PBx
Enthusiast
Enthusiast
Posts: 617
Joined: Mon May 09, 2011 9:36 am

what Font is used in PureBasic phpBB Forum

Post by VB6_to_PBx »

what Font is used in PureBasic phpBB Forum ??

the "best fit" to the Font used is :

Calibri Regular 11 size

but same text pasted into Window's Notepad looks almost exactly , but thicker or tiny bit bolder

How is phpBB thinning out that Font ??
or is it FireFox Browser doing this ??

i like the way its thinned out
but i cannot get this same effect in a PureBasic program i'm working on

Segoe UI regular 10 size is almost the same look , but the lowercase "g" is not the same as Calibri

----------------------------

Edit : as i'm typing this , i just realized this Forum is using Segoe UI regular 10 size
but on another phpBB Forum its using
Calibri Regular 11 size
...just the opposite

however both Forums are displaying slightly "thinned out" versions that are a little clearer to look at

so is it phpBB or FireFox doing the thinning ???
still would like to get this same effect in a PureBasic program i'm working on

=============

now more confused :)

typing in the Forum "REPLY" section or editor
it uses Segoe UI regular 10 size

but then [ Submit ] or Post the Reply text
and it changes to
Calibri Regular 11 size
 
PureBasic .... making tiny electrons do what you want !

"With every mistake we must surely be learning" - George Harrison
wombats
Enthusiast
Enthusiast
Posts: 663
Joined: Thu Dec 29, 2011 5:03 pm

Re: what Font is used in PureBasic phpBB Forum

Post by wombats »

I'm only guessing, but in the CSS file, the font is set to a percentage (62.5%), while we have to use point size in PureBasic. Maybe this is why?
User avatar
VB6_to_PBx
Enthusiast
Enthusiast
Posts: 617
Joined: Mon May 09, 2011 9:36 am

Re: what Font is used in PureBasic phpBB Forum

Post by VB6_to_PBx »

wombats wrote:I'm only guessing, but in the CSS file, the font is set to a percentage (62.5%), while we have to use point size in PureBasic. Maybe this is why?
i thought about the % scaling too

i just tested 105 to 120 % scaling in a Forum
and its still thinner looking Font, no matter the scaling percentage

will study phpBB Forum code how they are achieving this
 
PureBasic .... making tiny electrons do what you want !

"With every mistake we must surely be learning" - George Harrison
Mistrel
Addict
Addict
Posts: 3415
Joined: Sat Jun 30, 2007 8:04 pm

Re: what Font is used in PureBasic phpBB Forum

Post by Mistrel »

The font is:

Code: Select all

"Lucida Grande", "Trebuchet MS", Helvetica, Arial, sans-serif
It's rendered in that order depending on what is available to the host OS. Both "Lucida Grande", and "Trebuchet MS and Microsoft fonts with Helvetica predominantly being MacOS and Arial being the common fallback.
User avatar
VB6_to_PBx
Enthusiast
Enthusiast
Posts: 617
Joined: Mon May 09, 2011 9:36 am

Re: what Font is used in PureBasic phpBB Forum

Post by VB6_to_PBx »

Mistrel wrote:The font is:

Code: Select all

"Lucida Grande", "Trebuchet MS", Helvetica, Arial, sans-serif
It's rendered in that order depending on what is available to the host OS. Both "Lucida Grande", and "Trebuchet MS and Microsoft fonts with Helvetica predominantly being MacOS and Arial being the common fallback.
its "Trebuchet MS" regular 10 size i'm seeing on this Forum
i don't have "Lucida Grande" installed on my computer

thanks Mistrel
 
PureBasic .... making tiny electrons do what you want !

"With every mistake we must surely be learning" - George Harrison
Post Reply