You are not logged in.

#1 2006-10-12 01:06:21

eduac
Member
Registered: 2006-03-17
Posts: 123

fonts on websites with firefox are too small

Hi all

I have a problem with font size on firefox. They are too small, take a look:

http://img182.imageshack.us/img182/3873 … ot1oo7.jpg

I run Arch with KDE 3.5.4 + gtk-qt-engine + firefox 1.5.0.7


Arch - newbie

Offline

#2 2006-10-12 01:25:42

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: fonts on websites with firefox are too small

Edit-->
Preferences-->
Content-->
Fonts & Colors-->
Advanced-->
set Minimum Font Size to something useful.

Offline

#3 2006-10-12 01:36:34

eduac
Member
Registered: 2006-03-17
Posts: 123

Re: fonts on websites with firefox are too small

if i do this, some websites will be with a too large fonts sad


Arch - newbie

Offline

#4 2006-10-12 01:40:21

rayjgu3
Member
From: Chicago IL usa
Registered: 2004-07-04
Posts: 695

Re: fonts on websites with firefox are too small

in the same place as skottish pointed out
take the check out of "allow pages to choose their own fonts, ....
play around till you get it the way you want

Offline

#5 2006-10-12 01:49:07

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: fonts on websites with firefox are too small

The font control in Firefox is great. One thing that bugs me about Konqueror is that I can't fine tune the fonts as much as I would like.

Offline

#6 2006-10-12 01:56:41

eduac
Member
Registered: 2006-03-17
Posts: 123

Re: fonts on websites with firefox are too small

i cant find the ideal font size for all websites sad...i think the problem is with gtk-qt-engine


Arch - newbie

Offline

#7 2006-10-12 02:36:23

elasticdog
Member
From: Washington, USA
Registered: 2005-05-02
Posts: 995
Website

Re: fonts on websites with firefox are too small

Do you have the Microsoft TTF fonts installed? <code>pacman -Sy ttf-ms-fonts</code>

Offline

#8 2006-10-13 17:00:18

Kopsis
Member
Registered: 2006-01-31
Posts: 15

Re: fonts on websites with firefox are too small

In the Firefox prefs try changing your display setting to 75 dpi. It seems odd to me that a lower display density setting would result in larger fonts, but making this change really did the trick for me.

Offline

#9 2006-10-13 17:35:23

eduac
Member
Registered: 2006-03-17
Posts: 123

Re: fonts on websites with firefox are too small

i solve the problem adding this line on xorg.conf:

DisplaySize 210 157 # 96 DPI @ 800x600

http://wiki.archlinux.org/index.php/Xor … Size.2FDPI


Arch - newbie

Offline

#10 2006-12-10 22:14:05

fdrebin
Member
Registered: 2005-04-25
Posts: 152

Re: fonts on websites with firefox are too small

i've got exactly the same problem, but when i enter # DisplaySize 269 201 # 96 DPI @ 1024x768 and then xdpyinfo | grep resolution
i get 81x81 dpi !?

Offline

#11 2006-12-11 01:06:25

byte
Member
From: Düsseldorf (DE)
Registered: 2006-05-01
Posts: 2,046

Re: fonts on websites with firefox are too small

DisplaySize is supposed to be a fixed (and autodetected) value depending on your CRT/display, just as the name suggests. Why mess with it?


1000

Offline

#12 2006-12-11 06:31:56

fdrebin
Member
Registered: 2005-04-25
Posts: 152

Re: fonts on websites with firefox are too small

cause i want proper fonts in firefox! (look at the first image posted)
so is 96x96 DPI the best/default value so i have  ot achieve it?

Offline

#13 2006-12-11 07:24:43

PJ
Member
From: Sweden
Registered: 2005-10-11
Posts: 602

Re: fonts on websites with firefox are too small

fdrebin wrote:

cause i want proper fonts in firefox! (look at the first image posted)
so is 96x96 DPI the best/default value so i have  ot achieve it?

I believe the system default is the best value because it makes firebox look more similar to the rest of the gtk-apps which means that it will look less alienated. If that doesn't help, try limiting the minimal size of the fonts or just try to resize/shrink the overall font-size by pressing CTRL+ and CTRL-

Offline

#14 2006-12-11 19:23:36

fdrebin
Member
Registered: 2005-04-25
Posts: 152

Re: fonts on websites with firefox are too small

that's not a real solution cause the font gets bigger but the rest of a website stays the same size and thing don't "fit" any longer then...

Offline

#15 2006-12-11 19:47:08

martti1
Member
Registered: 2006-10-14
Posts: 38

Re: fonts on websites with firefox are too small

I use KDE and already had set my dpi to 96 in font settings, 8pt fonts still look too small. And in my opinion the difference between 8pt and 9pt is bigger than it should be. I have set the minimum font size to 9 in konqueror. That causes some sites to break because the text is too big to fit, so I just stopped caring.

Btw, how can I make all applications do this? Replace arial with some sans font, replace tahoma with some sans font, replace courier new with some monospace font.
Is it possible to do it with the /etc/fonts/conf.avail files?
I want to get the ms fonts package out of my system.


Linux user #438799

Offline

#16 2006-12-11 21:41:12

sh__
Member
Registered: 2005-07-19
Posts: 272

Re: fonts on websites with firefox are too small

martti1 wrote:

Btw, how can I make all applications do this? Replace arial with some sans font, replace tahoma with some sans font, replace courier new with some monospace font.
Is it possible to do it with the /etc/fonts/conf.avail files?
I want to get the ms fonts package out of my system.

I have this in my ~/.fonts.conf:

 <match target="pattern">
     <test qual="any" name="family"><string>tahoma</string></test>
     <edit name="family" mode="assign"><string>Bitstream Vera Sans</string></edit>
 </match>

Apply similar lines for other ms fonts.

Offline

#17 2006-12-12 15:13:49

martti1
Member
Registered: 2006-10-14
Posts: 38

Re: fonts on websites with firefox are too small

<match>
      <test><string>tahoma</string></test>
      <edit><string>Bitstream Vera Sans</string></edit>
</match>
<match>
      <test><string>verdana</string></test>
      <edit><string>Bitstream Vera Sans</string></edit>
  </match>
<match>
      <test><string>arial</string></test>
      <edit><string>DejaVu Sans</string></edit>
  </match>
<match>
      <test><string>time new roman</string></test>
      <edit><string>Dejavu Sans Mono</string></edit>
</match>
<match>
      <test><string>helvetica</string></test>
      <edit><string>DejaVu Sans</string></edit>
</match>

Those are the ones I got, I even tried to replace helvetica. It's not working, though. I see helvetica on most sites now.


Linux user #438799

Offline

#18 2006-12-14 23:35:50

fdrebin
Member
Registered: 2005-04-25
Posts: 152

Re: fonts on websites with firefox are too small

damn! i can't get a different DPI than 81x81 either with DisplaySize in xorg nor startx -- -dpi 75 !!!
any tips ???

Offline

Board footer

Powered by FluxBB