Search code examples
csstemplatescustomizationdokuwikitableofcontents

How do I css customize the TOC which is placed in the sidebar in DokuWiki


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.


Solution

  • #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.