in reply to I'd like to permanently move "Legend" to the bottom of "Recently Active Threads" page.

To hide the legend you can add the following to "On-Site CSS Markup" on your Display Settings page.

#nnt-legend { display: none; }

I don't know CSS to put it to the bottom without changes to the HTML.

update: Maybe this will work for moving the legend closer to the bottom. Not well tested, but it seems to work for me at the moment

#nodethreads { position: relative; padding-bottom: 12em; } #nnt-legend { position: absolute; bottom: 0px; }
  • Comment on Re: I'd like to permanently move "Legend" to the bottom of "Recently Active Threads" page.
  • Select or Download Code

Replies are listed 'Best First'.
Very cool!
by generator (Pilgrim) on Apr 24, 2009 at 05:45 UTC
    Thanks, ig!

    I had a suspicion that a potential solution might be available through the use of "On Site CSS Markup" but am not familiar enough with CSS to have done this without pulling out a bunch of dusty books.

    Tye has made the position "sticky" but I'll probably use your solutions to remove it altogether. After all, once you've read and comprehended the Legend who needs it anymore?

    Thanks for the fix!

    Wamest regards

    =====

    generator