CSS Issues appearing in IE8 Only
Hi,
I'm using RH7, and I've recently discovered that my 123, bullets, and ABC styles in my webhelp project aren't appearing properly in IE8. They appear fine in Firefox and IE7 and in the WYSIWYG editor, just not in IE8 when the help has been deployed to the server. To further complicate the situation, when I view the generated help in IE8 on my drive, everything appears correctly. It's just when viewing the help on the server in IE8 that these issues are occurring.
This is what's happening:
- Bulleted lists within numbered steps are appearing "hollow". I've checked that "list-style: disc;" is specified in the CSS in both the LI and P definitions.
- Numbered steps are appearing larger than they should be.
- ABC substeps within numbered steps are appearing as 123.
I experienced similar issues when upgrading to RH8 (we've since rolled back to 7). However, the difference with the RH8 issues is that they were occuring across all browsers, and could be viewed in the generated output on my drive. As mentioned, this only occurs in IE8 when viewing the help on the server.
This is what's specified in the CSS:
Bullet style:
P.BulletedStep {
color: #000000;
list-style: disc;
}
LI.P-BulletedStep {
color: #000000;
list-style: disc;
Numbered Style:
P.NumberedStep {
color: #000000;
font-size: 10pt;
list-style: decimal;
}
LI.P-NumberedStep {
color: #000000;
font-size: 10pt;
list-style: decimal;
ABC Style:
P.NumberedStepABC {
list-style: lower-alpha;
}
LI.P-NumberedStepABC {
list-style: lower-alpha;
Any help or suggestions would be much appreciated.
