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.

Était-ce utile?

La 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.

Autres conseils

The Css for a bulletless list is:

ul
{
list-style-type: none;
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top