Additional Help with Bulleted Lists
Hello,
I've read this thread over and over, regarding issues with bulleted lists: http://forums.adobe.com/thread/452971
My problem is related (I think my lists could also be behaving oddly due to them possibly being paragraph-style lists), but a bit different so I wanted to create a new thread rather than add my questions to that thread.
To illustrate my problem, I typed the text, then highlighted it, then selected the style from the Styles drop-down list to apply it to the highlighted text. This is what the outcome is:

Notice that the font I use for the numbers isn’t being picked up, and the disc bullets should actually be squares.
Here is the CSS information for these two styles:
P.UnorderedListFirstLevel {
margin-top: 0pt;
margin-bottom: 0pt;
font-style: normal;
font-variant: normal;
font-weight: normal;
color: #000000;
list-style: square;
font-size: 11px;
}
LI.P-UnorderedListFirstLevel {
font-style: normal;
font-variant: normal;
font-weight: normal;
color: #000000;
list-style: square;
font-size: 11px;
}
P.OrderedList {
margin-top: 0pt;
margin-bottom: 0pt;
margin-left: 0pt;
list-style: decimal;
font-variant: normal;
color: #000000;
padding: 0pt 0pt 0pt 0pt;
padding-bottom: 0pt;
padding-left: 0pt;
padding-right: 0pt;
padding-top: 0pt;
font-family: Verdana, sans-serif;
font-style: normal;
font-weight: normal;
font-size: 11px;
x-next-class: OrderedList;
x-next-type: P;
}
LI.P-OrderedList {
list-style: decimal;
font-variant: normal;
color: #000000;
font-family: Verdana, sans-serif;
font-style: normal;
font-weight: normal;
font-size: 11px;
}
Notice that for the unordered list, there is code for making the bullet a square (“list-style: square;”) and for the ordered list, there is code for formatting the numbers (“font-family: Verdana, sans-serif;”).
So here's my question: What can I do to fix the above code and make it work correctly like it does in RH7? Below is what the same list looks like in RH7, properly displaying, using the same exact code. Thanks in advance for all assistance! ![]()

