I'm having bullet issues. I'm using a style called BulletList on some text. It looks fine in the RoboHelp application. It looks fine when I generate a chm file. But when I generate WebHelp, the bullet itself has moved to the right and appears superimposed over the second or third character of the text line.
Here's part of my CSS file:
}
p.BulletList {
margin-left: -20px;
margin-top: -1pt;
margin-bottom: 6pt;
list-style: url(bullet_graygreen_square.gif);
mso-list: l0 level1 lfo1;
}
LI.p-BulletList {
list-style: url(bullet_graygreen_square.gif);
}
LI.kadov-P-CBulletList {
list-style: square;
Any thoughts? Thanks!
Hi,
Your paragraph is indented 20 pixels to the left. You list element itself (that holds the bullet) is not indented. Try the following:
p.BulletList {
margin-top: -1pt;
margin-bottom: 6pt;
}
LI.p-BulletList {
margin-left: -20px;
list-style: url(bullet_graygreen_square.gif);
}
This indents the entire list 20 pixels to the right. This should work for CHM and WebHelp alike.
Greet,
Willam
North America
Europe, Middle East and Africa
Asia Pacific