Env: MathJax 1.1
We modified the styles element in default.js to modify some of the display settings. As you see below, the font-size has been set to 50% which causes MathJax to render properly in Firefox (with 50%) but a much higher font size in Chrome.
If we remove the font-size, it appears properly in Chrome but shows up smaller in Firefox.
- What would be the right way to manage the font-size, so that it appears properly on all browsers?
- What would be the preferred mechanism to add custom changes to MathJax (such as the one given below), so that we don't break much on a future upgrade.
// // This allows you to change the CSS that controls the menu // appearance. See the extensions/MathMenu.js file for details // of the default settings. //
styles : {
".MathJax" : {
"font-family" : "Arial",
"font-size": "50%"
}
}