Is there a way to adjust the formatting of the Table of Contents? | XM Community
Skip to main content

On the table of contents, is it possible to:

  • remove the lines beneath the links?

  • change the checkmarks that appear when a block is complete to another symbol?

ChelseaIC
Yes, you will have to write CSS for both like below and change accordingly the symbol I included star.
Custom CSS
#Toc li span.TocText {
   
    text-decoration: none;
}

#Toc li.Complete span.TocIcon:before, #Toc li.Complete.Current span.TocIcon:before, #TocHeader td.Complete span.TocIcon:before, #TocHeader td.Complete.Current span.TocIcon:before {
    content: "☆" !important;
}


Hope it helps




Deepak
That worked perfectly - thank you so much for your help!


Leave a Reply