Question
Hi, I am using TWiki 4.2 and I have noticed that when I use lists in the sidebar (pattern skin), the markers for the unordered lists are dashes and don't follow the defaults for the levels (list-style-type = "disc", "circle" and "square" in that order). I think they used to (4.1.2), but I am not 100% sure. I can force the marker type by playing with "list-style-type" in the theme-style.css, but the levels are all the same with this method
and the dashes are still there! Can you tell me where I need to change this setting to get rid of the dashes?
Environment
--
PeterStephens - 25 Feb 2008
Answer
If you answer a question - or have a question you asked answered by someone - please remember to edit the page and set the status to answered. The status is in a drop-down list below the edit box.
The image is defined in
colors.css, bottom:
.patternLeftBarPersonal li {
background-image:url(bullet-personal_sidebar.gif);
}
The indent is defined in
style.css:
#patternLeftBarContents ul {
padding:0;
margin:0;
list-style:none;
}
--
ArthurClemens - 26 Feb 2008
Thanks Arthur. This gave me the information I needed to get the look I wanted. - Pete
--
PeterStephens - 26 Feb 2008