0

I'm working with jQuery Mobile and I'm building my theme using ThemeRoller. I see that the default is set to be Helvetica, Arial, sans-serif but instead of giving other options it allows me to write in my own. Is there a way to implement any font that I like or am I only restricted to web safe fonts? I assume that it would allow anything being CSS3 based but once again, I am stumped on how to implement.

Thanks!

Silas
  • 582
  • 2
  • 9
  • 19

1 Answers1

1

You can specify your own font names, but if they're not web-safe fonts you'll have to include @font-face rules separately.

freejosh
  • 11,263
  • 4
  • 33
  • 47
  • so once I download that finished theme when I'm done with it, I can go into the CSS it makes and add the @font-face as I would on a normal website? – Silas Jan 17 '13 at 01:23
  • 1
    Yep, or include it in a separate CSS file. – freejosh Jan 17 '13 at 01:31