Bullet point css

Hi,
Would it be possible to change the css style of the bullet point level 1 -2-3 from the dot to(1tab/, 2tab/, 3tab/…) (tab/a/tab/, tab/b/tab/, tab/c/tab/, …) or (tab/tab/i/tab/, tab/tab/ii/tab/, tab/tab/iii/tab/, tab/tab/iv/tab/, tab/tab/v/tab/…) and how could I do this?
Thanks

I guess the solution would be something close to:
{{box cssClass=“ol#myList {list-style-type:lower-latin }”}}
ol>
li> element 1
li> element 2
/ol>
{{/box}}
but I can’t manage to make it work. Do you have any idea? Thanks

See http://www.xwiki.org/xwiki/bin/view/Documentation/DevGuide/Tutorials/SkinExtensionsTutorial/ . You can write:

(% class="myList" %)
* item1
* item2
* item3

and then style your list from the skin extension. See also http://www.xwiki.org/xwiki/bin/view/Documentation/UserGuide/Features/XWikiSyntax/?syntax=2.1&section=Parameters .

Thanks, it works,
Sorry for the basic question…

Is the following example a proper implementation? It’s displayed correctly on the navigator but the numbered list start at 1 again on the pdf export:

1. item 1
1. item 2

(% style=“padding-left: 20px” %)
(((
(% type=“a” style=“list-style-type:lower-alpha” %)
* item a
* item b
* item c
* item d
)))

(% start=“3” %)
1. item 3
1. item 4

Thanks