If the text is inside a table (as I see in your screenshots) try:
body, td {
font-size: 11px;
}
victor hugo
2009-06-08 07:36:13
If the text is inside a table (as I see in your screenshots) try:
body, td {
font-size: 11px;
}
i think what Victor suggested should work. Also, next time you can try
* { font-size: 11px }
as a test. Obviously you don't want to alter other elements such as h1, h2, etc for their font sizes, but you can use the line above to try things out, so that you can guess that if the line above works, then maybe you need to specify font-size for an additional tag besides the body you originally specified.