style.css :

body {
  ...
  font: 12px/170% Verdana;

If Verdana is not available, the browser will use his default font, generally a serif one. The generic family name sans-serif should be added :

body {
  ...
  font: 12px/170% Verdana, sans-serif;
CommentFileSizeAuthor
fontsansserif.txt751 bytesjptavan
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

cburschka’s picture

Version: 5.0-rc2 » 6.x-dev
Status: Active » Needs review
Gábor Hojtsy’s picture

Status: Needs review » Fixed

Thanks, committed!

cburschka’s picture

(Makes me wonder how many other patches that should have long gone in are buried because they aren't marked for review... I found this only through bug-bingo.)

Anonymous’s picture

Status: Fixed » Closed (fixed)