Question
Does anyone know how i can change the round bullets that appear for ul li and ol list items.
I just want to disable them and use pictures that i have made.
Environment
--
CrimsonBinome - 26 Nov 2007
Answer
If you answer a question - or someone answered one of your questions - please remember to edit the page and set the status to answered. The status selector is below the edit box.
You can change the appearance of bullet lists with CSS. There are lots of online resources that will tell you how. If you are using pattern skin, the style definitions are in
style.css that is attached to the TWiki.PatternSkin topic.
--
ArthurClemens - 26 Nov 2007
Yes i can add an image as a bullet but the default round dots remain there, that i what i would like to remove. I found some text that says it is put there when the TWiki changes its syntax (---+++) to the actual html code. But where to change that is the question.
Oh and im using
QuickMenuSkin
--
CrimsonBinome - 27 Nov 2007
You can override stylesheets in topics by adding
<<style><</style> in the topic text. The Firefox Web Developer toolbar is an invaluable tool to find which styles you need to override. But you will have to read up on stylesheets.
--
ArthurClemens - 27 Nov 2007
Yes thanks your right, its the following CSS
list-style-type:none;
list-style-position:outside;
this can change the bullets from dots to what you want.
Thanks
--
CrimsonBinome - 03 Dec 2007