Highlight the TOC selection in Magellan

Publishing

When selecting a topic in the Table of Contents or What`s in this section list, the topic can be highlighted, for example, with a different color or outline.

TOC highlighting Whats in this section highlighting

  • To highlight the TOC and What`s in this section selection:

  1. Open the contentstyles.css file in your theme folder.

  2. Add the following CSS to contentstyles.css, editing it to suit your needs:

    /* text for selected item */
    ul.jqtree-tree li.jqtree-selected>.jqtree-element>.jqtree-title {
        border-radius: 2px;
        border: 1px solid var(--light-gray-color);
        box-shadow: 1px 1px 3px 1px var(--light-gray-color);
        color: red !important;
        font-weight: 600;
        font-size: 15px;
    }