In your normal.css file -->
If you change this line
body {
font-size: 10px;
}
to this
body {
font-size: 0.65em;
}
Then us, old fashioned IE users will also be able to use our IE browser's text size option, which is not working right now because it's "fixed" with "px" in css.
No worries btw, it won't change site's overall font size, infact font size will stay same but it will let us use IE text size option.
Useful info --> how to size text in css



