Currently, the font specification calls Georgia as the primary serif font for question titles. While undeniably an attractive font, its zero renders almost exactly the same as a lower case letter 'o'. This introduces a significant level of ambiguity:

Georgia rendering a zero

While I think it extremely unlikely that there is a serif font that is readily available on most Unix user's machines that would have a slashed or dotted zero (the ideal), with only a small tweak to the CSS, it would be possible to improve the rendering of zeros for most users:

Times as the default

I'm reluctant to suggest a significant change as I think the overall look of the site is extremely professional - however, for a site for coders and geeks, having ambiguous zeros is rather unfortunate1.

With only a small change to the stylesheet, this can be improved. From:

#question-header .question-hyperlink {
     color: #155078;
     font-family: Georgia,"Times New Roman",Times,serif;
     font-size: 24px;
     ...
}

to:

#question-header .question-hyperlink {
     color: #155078;
     font-family: "Times New Roman",Times,serif;
     font-size: 28px;
     ...
}

Is this something that others are similarly exercised about? Could it be considered for a change?

Other example questions where this has an impact (mentioned in chat):

link
Your CSS might not be the final correct change. #question-header might not catch the ones in the question list, a more generic a.question-hyperlink might be in order. In any case that's for the site designer to work out. – Caleb Aug 4 '11 at 11:27
feedback

2 Answers

I too think this design could use addressing. As I mentioned in chat I have been bothered by this before and was going to bring it up on Meta and kept forgetting. Thanks for bringing it up.

I'm not attached to any particular choice so long as it's glyphs for key characters that matter to Unix related questions (like the number zero and letter o) are sufficiently distinct.

link
feedback

When writing by hand I always slash my zeroes and sevens.

Don't know which font does that (zeroes, 7 is already non-ambiguous) but I'd like to see it used.

link
feedback

You must log in to answer this question.

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