To make the text not change, use .css to style your sizes, and set the size based on pixels, not points. So make sure your style sheet looks something like this:
Code:
p {
font-size:12px;
}
Not like these two examples:
Code:
p {
font-size:12pt;
}
p {
font-size:12;
}