• I set up my web site a few years ago now in WordPress, and to get the plugin to display how I wanted it to, I had to edit the custom CSS and tweak the php. At the time I knew what I was doing, but I haven’t changed it in 3 years. With the plugin updates, I lost my customisations. I took notes, so I know what I did but now I get CSS errors and I can’t quite recall exactly where I tweaked the php code.

    In the CSS I did this:

    #toc-np-container {
    padding: 0.5em;
    margin-bottom: 0.5em;
    width: auto;
    display: table;
    margin: 0 auto;
    }

    … and also …

    #toc-np-container li.header-level-1 {
    font-weight: bold;
    margin-top: 4px;
    display: inline;
    }

    In the plugin code I also added this:

    $items .= ‘ | ‘;

    The idea was to display the TOC horizontally like so:

    Information | Memories | Packaging | Scrapbook | Data |

    Unfortunately, CSS no longer likes margin-top and display: inline and I need to remember where to put my slight code addition so it places a | between each TOC entry.

    Either that, or is there a better way of using this plugin to display the TOC horizontally?

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter RichyH

    (@richyh)

    Ah, I also meant to ask if there is a way that this TOC can be presented both at the top of a page *and* at the bottom of the same page? Currently, you have to scroll back up to the top of the page to be able to go to the next one via the TOC link.

    Thanks! ??

Viewing 1 replies (of 1 total)
  • The topic ‘Display TOC list inline (horizontally)’ is closed to new replies.