This question about Not sure...: Answered
How to change the bullet symbol
How can i change the symbol of the bullet list for different levels? I found the macros BB, BB2 etc., but they seem not to work, even if I redefine them in System.PreferenceSettings
Answer
You can use
RenderListPlugin to create image rich lists.
To change the bullet type (circle, square, etc) you have to make it happen in CSS.
For instance to have square bullets:
<style>
div#test ul {
list-style-type:square;
}
</style>
To have variation in the levels, specify this in CSS as well:
<style>
div#test2 ul {
list-style-type:square;
}
div#test2 ul ul {
list-style-type:circle;
}
</style>
See
CSS list-style-type Property for supported styles.
--
ArthurClemens - 17 Dec 2009