Some help files appear in super tiny, small fonts that are hardly legible.  This appears to be caused by the help file’s use of Internet Explorer’s (IE) style settings. 

To fix the problem, go to IE’s Tools menu and select the bottom option, Internet Options, go to the General tab and then to the Accessiblity button at the bottom of the tab.  A dialog box opens and at the bottom is a space for a user style sheet.  Click the check box and use a style sheet you’ve defined with font-sizes set at least to medium.  Mine is called Ichoosetosee.css (name it anything you want) and looks like this:

/* CSS Document */
li {
    font-size: medium;
}

body {
    color: #000000;
    background-color: #FFFFFF;
    margin: 5px;
    font-family: sans-serif;
    font-size: medium;
}

p {
    font-size: medium;
    color: #000000;
    font-style: normal;
}
table {
    font-size: medium;
    color: #000000;
}

h1 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

h2 {
    font-size: large;
    color: #000000;
    font-weight: normal;
}

h3 {
    font-size: 12px;
}

hr {
    height: 3px;
    width: 704px;
}
hr.short {

    height: 1px;
    width: 675px;
}

a:link {
    color: #006666;
    font-weight: normal;
    text-decoration: none;
}
a:visited {
    color: #2B0055;
    text-decoration: none;
    font-weight: normal;
}
a:hover {
    font-weight: normal;
    color: #6635A8;
    text-decoration: none;

}
a:active {
    font-weight: normal;
    text-decoration: none;
    color: #CC99FF;
}

Tags: | | | | |