I'd like to change the font in tooltips to Comic Sans MS (a lot of our users are dyslexic).
And also have no aesthetic sense?
I'm sure the default font would be easier to read than Comic Sans MS, not to mention that the Microsoft fonts can't be relied upon cross-platform.
If you really must, find:
Code:
document.write('<div id="fixedtipdiv" style="visibility:hidden;width:'+tipwidth+';background-color:'+tipbgcolor+'" ></div>')
and replace with
Code:
document.write('<div id="fixedtipdiv" style="visibility:hidden;width:'+tipwidth+';font-family:"Comic Sans MS" sans-serif;background-color:'+tipbgcolor+'" ></div>')
You can change the font name to something else if you change your mind...
Bookmarks