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][1]
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][2]
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 unfortunate[1].
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](http://chat.stackexchange.com/transcript/message/1519466#1519466)):
- http://unix.stackexchange.com/questions/17314/what-is-signal-0-in-a-trap-command
- http://unix.stackexchange.com/questions/1446/what-is-commit-0-for-ext4-does-mdadm-not-support-it
- http://unix.stackexchange.com/questions/10287/message-while-booting-pci-00000000-0-bar-0-cant-allocate-mem-resource-0x
- http://unix.stackexchange.com/questions/16804/ext4-overrides-my-commit-100-mount-option-with-commit-0
[1]: https://i.sstatic.net/825Vg.png
[2]: https://i.sstatic.net/BXhW6.png