In Firefox 7.0.1 (using MS Windows 7), the font size within the answer box is way too small. I hardly can read it! Could you please fix that issue?

Note: I also read this (closed) question: Font too small on StackOverflow. But the link provided there, seems to be dead.

The font size seems to be ok in Internet Explorer and other Stack Exchange sites like "programmers".

My zoom level is at 0 (100%).

Small font on the left, same zoom level on programmers on the right:

Small font versus good size

In IE, they look nearly the same (left StackOverflow, right programmers): enter image description here

share|improve this question
1  
Have you checked your zoom level? Perhaps 'ctrl' + '0' would help? – David Thomas Oct 2 '11 at 16:33
@David Thomas: Zoom level is ok (100%) – vorax Oct 2 '11 at 17:02
1  
Your image doesn't make the text look at all tiny though..? Is your screen-resolution particularly high, maybe? – David Thomas Oct 2 '11 at 17:05
@David Thomas: Yes, it is 1080p on a 24"Screen - i'll post another link from "programmers" where it seems to be ok! – vorax Oct 2 '11 at 17:09
To avoid image rot, please use the toolbar button to upload images (and then use that URL for linking). And as an aside: I LOVE JPEG!! JPEG! JPEG! ;-) – Arjan Oct 2 '11 at 18:02
1  
@vorax That isn't high at all. – agf Oct 2 '11 at 18:55
The screen capture in the deleted question also showed fonts in the textarea that were smaller than the other fonts on the same page. That was posted in December 2009 though; things might have changed. – Arjan Oct 2 '11 at 19:11
@Arjan: Thanks for inserting the screenshots. Since i had not enough reputation, i was not able to! – vorax Oct 2 '11 at 19:14
How do things look in other browsers? (All browsers should have access to the very same fonts.) What OS are you using? – Arjan Oct 2 '11 at 19:37
@Arjan: They look nearly the same. Difference is really slight - see edit – vorax Oct 2 '11 at 19:49

1 Answer

The CSS on Stack Overflow, Meta, and Super User:

textarea {
  font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, 
    DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
  border: 1px solid #999;
  font-size: 90%;
}

According to Chrome's inspector this yields a computed CSS font size of 12 px.

On Programmers the CSS is the same, except for:

  font-size: 13px;

Which, obviously, renders larger then.

All sites look fine on my Mac though; but of course it depends on the available fonts. (Menlo is used by Firefox on mine.)

share|improve this answer
Oh, I can no longer keep count of the Firefox releases; my screenshot that looks fine is for Firefox 8, not 7. (And on a Mac.) – Arjan Oct 2 '11 at 21:11

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged