Thursday, November 15, 2007

how to override google default font-family in firefox

At your /path/to/your/firefox/config/path/chrome/userContent.css file to add this:

@-moz-document domain(google.com)
{
body, td, input, textarea, select {
font-family: sans-serif;
}
}