1

I would like to override the font of web.ebuddy.com to Helvetica (the font of my messages).

I have tried doing

#bodyContent {
    font-family: Helvetica;
}

and it didn't work.

Brock Adams
  • 90,639
  • 22
  • 233
  • 295
minusatwelfth
  • 191
  • 6
  • 14

2 Answers2

1

When using Stylish, one often has to employ the !important flag. Also, provide a fallback font in case Helvetica is not installed (it wasn't on some of my windows machines).

So this should work:

#bodyContent {
    font-family: Helvetica,Arial,sans-serif !important;
}

unless the content in question is in an iframe. Iframes in Google Chrome are sometimes impossible for Stylish to reach.

Brock Adams
  • 90,639
  • 22
  • 233
  • 295
0

Have you tried using the all selector?

Like this:

* { font-family: Helvetica; }
Passerby
  • 9,715
  • 2
  • 33
  • 50