This should improve the appearance of the Knowledge Base Table of Contents by incorporating the #1 code suggestion from this suggestion.
Notenik-16-9-5.zip (27.5 MB)
This should improve the appearance of the Knowledge Base Table of Contents by incorporating the #1 code suggestion from this suggestion.
Notenik-16-9-5.zip (27.5 MB)
Herb, thanks for taking my suggestions into consideration. Everything looks great.
I wanted to use this comment to address some mistakes that I may have made with the CSS in the original feature request.
To properly hide bullets in unordered list outlines the correct declaration should be:
For Table of Contents
.outline-ul-within-details {
list-style-type: none;
}
For normal outlines
.outline-list {
list-style-type: none;
}
Note the change to list-style-type
instead of list-style
and the addition of the class .outline-list
. When I first wrote the proposal I was unaware of the difference in styles between TOC and non-TOC outlines that was covered in the second part. It never occurred to me adjust the CSS to address these differences until now.
Sorry if this is an inconvenience.
No problem. In fact, this is the way the values are currently set.