Does anyone know how to prevent Netscape from inserting large amounts of space at the top, bottom and left of bullet lists?
I've tried every style-sheet specification I can find - here's the style sheet code:
P, BODY {
color: #000000;
font-family: "Verdana", "sans-serif";
font-size: 10pt;
margin-top: 0.1cm; margin-bottom: 0.1cm;
}
OL { list-style-type: decimal; } /* Top-level numbered list */
UL { list-style-type: disc; }
OL, UL
{
/* This margin-left setting aligns bullets with left edge of paras in IE and a good bit further right in NN . */
margin-left: 0.5cm;
margin-top: 0.001cm;
margin-bottom: 0.001cm;
padding: 0.001cm;
/* border-width: 0.01cm; Avoid - makes things worse!*/
}
LI
{
color: #000000;
font-family: "Verdana", "sans-serif";
font-size: 10pt;
/* Do NOT specify margin-left in LI - it makes bullets vanish in NN!!
margin-left: 0.1cm;
*/
margin-top: 0.1cm;
margin-bottom: 0.01cm;
}
Thanks!
[sig][/sig]
I've tried every style-sheet specification I can find - here's the style sheet code:
P, BODY {
color: #000000;
font-family: "Verdana", "sans-serif";
font-size: 10pt;
margin-top: 0.1cm; margin-bottom: 0.1cm;
}
OL { list-style-type: decimal; } /* Top-level numbered list */
UL { list-style-type: disc; }
OL, UL
{
/* This margin-left setting aligns bullets with left edge of paras in IE and a good bit further right in NN . */
margin-left: 0.5cm;
margin-top: 0.001cm;
margin-bottom: 0.001cm;
padding: 0.001cm;
/* border-width: 0.01cm; Avoid - makes things worse!*/
}
LI
{
color: #000000;
font-family: "Verdana", "sans-serif";
font-size: 10pt;
/* Do NOT specify margin-left in LI - it makes bullets vanish in NN!!
margin-left: 0.1cm;
*/
margin-top: 0.1cm;
margin-bottom: 0.01cm;
}
Thanks!
[sig][/sig]