I looked around on StackOverflow and it looks like all of the questions related to changing the typeface also concerned using custom fonts. Is it possible to just change the typeface to Serif in a WebView without changing the font as well?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Sure. In the HTML content, in the head do:

<html>
<head>
...
<style type="text/css">
body { font-family: serif; }
...
</style>
...
link|improve this answer
Worked like a charm. Thanks a ton. – oneilse14 Oct 30 '11 at 19:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.