Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Bullet list layout in Netscape

Status
Not open for further replies.

philcha

Programmer
May 10, 2000
109
GB
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]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top