Forum Moderators: not2easy
I'm thinking it's maybe padding and margin.
The position of the bullet is actually handled differently by different browsers, outside is the default position of the bullet anyway, and you would need to specify approx 20px left padding/margin, to cope with the display of the bullet (in IE).
Note: use of both padding and margin is best for lists because different browsers use different properties to control the bullet.
Or you could change list-style-position to inside and then set padding and margin to 0, you wouldn't need a width then either..
either way you need to set some from of left padding and margin as IE is applying defaults.
Suzy
padding:15px;
to the ul style definition and this FIXED the printing problem.
I also discovered that smaller values of padding caused the marker image to SHRINK, presumably because they are being scaled by *something* to fit. This implies my disappearance bug is due to them being shrunk out of existance with no padding defined.
I did that with a pair of pants once <g>.
I'm afraid I don't fully understand why this happens and is exacerbated by printing, but am glad for the fix!
Thanks very much for the help.