jagwebby
11-25-2011, 08:24 PM
Hi,
I want to be able to have an ordered list that use right parentheses instead of periods.
Here is the css I employed.
.ui-tabs-panel ol li {
list-style: none;
counter-reset: list;
}
.ui-tabs-panel ol li:before {
content: counter(list, decimal) ") ";
counter-increment: list;
font-size: 14px;
font-weight: bold;
font-family: arial;
color: #222222;
}
When I use it, the numbered list does not iterate and instead comes out as
1)
1)
1)
instead of
1)
2)
3)
I want to be able to have an ordered list that use right parentheses instead of periods.
Here is the css I employed.
.ui-tabs-panel ol li {
list-style: none;
counter-reset: list;
}
.ui-tabs-panel ol li:before {
content: counter(list, decimal) ") ";
counter-increment: list;
font-size: 14px;
font-weight: bold;
font-family: arial;
color: #222222;
}
When I use it, the numbered list does not iterate and instead comes out as
1)
1)
1)
instead of
1)
2)
3)