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>

  • item 1
  • item 2
    • sub item 2.1
  • item 3

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>

  • item 1
  • item 2
    • sub item 2.1
  • item 3

See CSS list-style-type Property for supported styles.

-- ArthurClemens - 17 Dec 2009

QuestionForm edit

Subject Not sure...
Extension
Version Foswiki 1.0.0
Status Answered
Topic revision: r2 - 17 Dec 2009, ArthurClemens
The copyright of the content on this website is held by the contributing authors, except where stated elsewhere. See Copyright Statement. Creative Commons License    Legal Imprint    Privacy Policy