PDA

View Full Version : Netscape - Bulletted List


simon315
08-18-2002, 11:01 PM
Hi! I'm trying to create a ordered list on my web page utilizing css. I've created a custom css for both Netscape and IE using the disc-style bullets for both browsers. How come IE correctly displays the bullets and Netscape gives me a numbered list instead? Did I do something wrong? Here is the css portion for the <LI>:

LI
{
LIST-STYLE-TYPE: disc
}

Thanks in advance!

Inch
08-19-2002, 09:51 AM
Simon,
You don't want to create an ordered list, you want an unordered list. Try using <ul> </ul> tags instead of <ol> </ol>. That's the only thing I can think if.

simon315
08-19-2002, 05:01 PM
That's what it was. Sometimes the simplest things make the biggest difference!