Reply
 
Thread Tools Display Modes
  #1  
Old 08-16-2008, 07:18 PM
Lazy Lazy is offline
Member
 
Join Date: Oct 2006
Location: Belgium
Posts: 73
Thanks: 0
Thanked 0 Times in 0 Posts
Default fonts - non other than windows available?
I noticed I couldn't read all the code-quotes on the forum, but after installing the windows fonts this seemed ok.

Now I just saw on another forum (4front - for audio oss) again code that's unreadable (undecipherable gibberish).

When typing "fonts" in the search of pbdir though, the only result is the set of windows fonts that I already have installed.
... :?:
Reply With Quote
  #2  
Old 08-17-2008, 01:46 AM
sblevin sblevin is offline
Senior Member
 
Join Date: Jun 2005
Location: Australia
Posts: 909
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: fonts - non other than windows available?
Give links to some dodgy looking posts, and what browser/version/PC-BSD version you are using. Might be valuable to see if others with the same browser/OS version get different results - maybe seeing that will trigger an "Oh I remember that one ..." memory from someone who fixed it earlier.

The only really mongrel font thing I've seen so far is some "pleughch" looking fonts in a couple of wine apps, and setting custom font size inside some forum software resulting in microfilm

This is unreadable

Like that. Code for above was:
Code:
This is unreadable
That text is too small to read, and I'm in XP running Firefox so it's not a PC-BSD thing.
Reply With Quote
  #3  
Old 08-17-2008, 08:24 AM
Lazy Lazy is offline
Member
 
Join Date: Oct 2006
Location: Belgium
Posts: 73
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: fonts - non other than windows available?
Originally Posted by sblevin
Give links to some dodgy looking posts, and what browser/version/PC-BSD version you are using. Might be valuable to see if others with the same browser/OS version get different results - maybe seeing that will trigger an "Oh I remember that one ..." memory from someone who fixed it earlier...
I'm using Firefox 3.0(win) on PCBSD 1.5.1
Here's a link to another post of mine, where the code in the 1st and 3rd message look weird:
http://4front-tech.com/forum/viewtopic. ... d02c5e0cd6

EDIT: I opened it with Konqueror just now, and then the code looks normal, so I suppose it has nothing to do with installed fonts after all, but it's rather a browser-thing?
Reply With Quote
  #4  
Old 08-17-2008, 08:42 AM
sblevin sblevin is offline
Senior Member
 
Join Date: Jun 2005
Location: Australia
Posts: 909
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: fonts - non other than windows available?
My results on PC-BSD 1.5.1

Konqueror: Fine
Firefox3.0_2-PV0.pbi: Fine
WinFirefox31.1.0-PV0.pbi: SPAZZO! Awefull!

The forum bits surrounded by [code] tags looks like asci, punctuation marks and non English charactors.

This "may" be due to the custom wine version that wraps this PBI is itself unaware of other fonts on your system.

I'm trying stuff now and will keep in touch. (I need to learn about fonts and wine anyway - thanks for the nudge
Reply With Quote
  #5  
Old 08-17-2008, 09:46 AM
sblevin sblevin is offline
Senior Member
 
Join Date: Jun 2005
Location: Australia
Posts: 909
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: fonts - non other than windows available?
OK - Gone as far as I can with this (Canadian Club getting the better of me ...)

code {
font-family: Courier, 'Courier New', sans-serif; font-size: 11px; color: #006600;
background-color: #FAFAFA; border: #D1D7DC; border-style: solid;
border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
}

That was in the 4front forum page styles section of the webpage. I put it into a local webpage, marked a section of text as style code, and POW! It looks the same - seems to render properly in the other browers though (FF3 native and konq)

I hope that helps you or someone else get a handle on what might be going on.

Below is the local page I used to generate the error.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>test.htm</title>
<style type="text/css">
.code {
font-family: Courier, 'Courier New', sans-serif; font-size: 11px; color: #006600;
background-color: #FAFAFA; border: #D1D7DC; border-style: solid;
border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
}
</style>
</head>
<body>
This is normal





<address>This is address</address>


<h1>This is heading 1
</h1>
<span class="code">This is courrier</span>

</body>
</html>
Reply With Quote
  #6  
Old 08-17-2008, 10:06 AM
sblevin sblevin is offline
Senior Member
 
Join Date: Jun 2005
Location: Australia
Posts: 909
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: fonts - non other than windows available?
OK
This DOES work
<html>
<head>
<title>test.htm</title>
<style type="text/css">
.code {
font-family: helvetica, sans-serif;
}
</style>
</head>
<body>
This is normal

<span class="code">This is courrier</span>

</body>
</html>

This does NOT work....
(only change is swapped "courier" for "helvetica")

<html>
<head>
<title>test.htm</title>
<style type="text/css">
.code {
font-family: courier, sans-serif;
}
</style>
</head>
<body>
This is normal

<span class="code">This is courrier</span>

</body>
</html>
Reply With Quote
  #7  
Old 08-18-2008, 03:05 PM
Lazy Lazy is offline
Member
 
Join Date: Oct 2006
Location: Belgium
Posts: 73
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: fonts - non other than windows available?
Originally Posted by sblevin
My results on PC-BSD 1.5.1

Konqueror: Fine
Firefox3.0_2-PV0.pbi: Fine
WinFirefox31.1.0-PV0.pbi: SPAZZO! Awefull!
...
I'm gonna have to stick with the WinFirefox though, because the regular FFox got continuous "unsupported browser" complaints from Google and other sites that I use a lot.

For now I'll just keep switching to Konqueror whenever a page is unreadable.
Reply With Quote
  #8  
Old 08-18-2008, 03:16 PM
Lazy Lazy is offline
Member
 
Join Date: Oct 2006
Location: Belgium
Posts: 73
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: fonts - non other than windows available?
Originally Posted by sblevin
OK
[b]This DOES work...
This is about css, right?
I'll have to find some time to finally learn how that works :?
I guess the difficulty is about the level of html, so I should be able to learn the basics at least.

Thanks for your replies!
I'll figure out the above when I learned some of css.
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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
What is with the fonts? freymann General Questions 1 11-25-2007 10:21 PM
Liberation Fonts, replacement for Windows core fonts Oliver Herold The Lounge 9 05-25-2007 10:09 PM
fonts... heinrich General Questions 31 10-17-2006 05:48 PM
my fonts are not sharp as in windows Dingens General Bug Reports 72 04-02-2006 01:10 PM
New version of the Microsoft Fonts + updated fonts.conf! Charles General Questions 7 01-22-2006 01:24 AM


All times are GMT. The time now is 01:16 PM.


Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

Copyright 2005-2010, The PC-BSD Project. PC-BSD and the PC-BSD logo are registered trademarks of iXsystems.
All other content is freely available for sharing under the terms of the Creative Commons Attribution License.