Question

I have chosen to place the table of contents in the sidebar instead of the actual article in DokuWiki. This makes the regular css-styles for customizing the TOC un-usable. I am not able to find the right css-styles as well as which css file I should be editing.

I simply want to make the TOC list without bullets.

Was it helpful?

Solution 2

#dokuwiki__aside ul li {
  list-style: none outside none;
}

if that doesn't work right click the list and select inspect element to find the correct target.

OTHER TIPS

The Css for a bulletless list is:

ul
{
list-style-type: none;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top